mirror of
https://github.com/teableio/teable.git
synced 2026-01-09 07:44:56 +08:00
73 lines
898 B
Plaintext
73 lines
898 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
# and https://github.com/github/gitignore for examples
|
|
|
|
# local env files (followinf dotenv-flow / nextjs convention)
|
|
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# security: atlassian/changeset
|
|
|
|
**/.netrc
|
|
|
|
# dependencies
|
|
node_modules
|
|
.pnpm-store/
|
|
.pnp.*
|
|
|
|
# testing
|
|
/coverage
|
|
.out/
|
|
|
|
# Debug
|
|
|
|
**/.debug
|
|
|
|
# Build directories (next.js...)
|
|
/.next/
|
|
/out/
|
|
/build
|
|
/dist/
|
|
|
|
# Cache
|
|
*.tsbuildinfo
|
|
**/.eslintcache
|
|
.cache/*
|
|
.swc/
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
|
|
# IDE
|
|
**/.idea/*
|
|
!**/.idea/modules.xml
|
|
!**/.idea/*.iml
|
|
.project
|
|
.classpath
|
|
*.launch
|
|
*.sublime-workspace
|
|
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
!.vscode/*.code-snippets
|
|
|
|
# Docker overrides
|
|
|
|
./docker-compose.override.yml
|
|
|
|
# Deployment platforms
|
|
|
|
.vercel
|
|
|
|
# LocalStorage assets
|
|
|
|
**/.assets |