mirror of
https://github.com/teableio/teable
synced 2024-11-21 23:04:16 +00:00
8e8152a1b2
* feat: user field support filter `Me` * fix: selection filter user 'Me' * fix: `sqlite` dateRangeOfMonths agg func * refactor: remove queryUserId param use `cls` user --------- Co-authored-by: pengap <penganpingprivte@gmail.com>
72 lines
876 B
Plaintext
72 lines
876 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
|
|
.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 |