mirror of
https://github.com/teableio/teable
synced 2024-11-22 15:31:39 +00:00
4c27e38c14
* feat: support postgres db * fix: postgres install date time * fix: unit test * chore: yarn.lock * feat: add Makefile script * chore: merge conflicts * test: integration tests * chore(deps): update yarn to v4.0.0-rc.42 --------- Co-authored-by: pengap <penganpingprivte@gmail.com>
56 lines
622 B
Plaintext
56 lines
622 B
Plaintext
# All node_modules directories
|
|
node_modules
|
|
**/node_modules
|
|
dist
|
|
|
|
# All secrets
|
|
**/.env.local
|
|
**/.env.*.local
|
|
|
|
# By default all git files
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
.github
|
|
|
|
# Tools caches
|
|
.cache/*
|
|
tsconfig.tsbuildinfo
|
|
.eslintcache
|
|
|
|
# Yarn
|
|
!.yarnrc.yml
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
|
|
# Used when building with nextjs (next-eslint)
|
|
!.eslintrc.base.json
|
|
!.prettierignore
|
|
!.prettierrc.js
|
|
!.eslintignore
|
|
|
|
# npm
|
|
!.npmrc
|
|
|
|
# Docker related
|
|
.dockerignore
|
|
Dockerfile
|
|
dockers/docker-compose.*.yml
|
|
dockers/docker-compose.yml
|
|
docker
|
|
|
|
# Log files
|
|
logs
|
|
*.log
|
|
|
|
# Temp files
|
|
tmp
|
|
*.tmp
|
|
|
|
# IDE related
|
|
.idea
|
|
.vscode
|
|
|
|
# other
|
|
.DS_Store
|