68 lines
735 B
Plaintext
68 lines
735 B
Plaintext
# Dependencies and build output
|
|
node_modules/
|
|
.pnpm-store/
|
|
dist/
|
|
dist-ssr/
|
|
.vite/
|
|
coverage/
|
|
.nyc_output/
|
|
playwright-report/
|
|
test-results/
|
|
.cache/
|
|
.eslintcache
|
|
*.tsbuildinfo
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Environment files and local secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.local
|
|
|
|
# Runtime data and user uploads
|
|
/data/
|
|
/uploads/
|
|
*.db
|
|
*.db-journal
|
|
*.db-shm
|
|
*.db-wal
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.sqlite-shm
|
|
*.sqlite-wal
|
|
|
|
# Private keys and local certificates
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.pfx
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
*.pid
|
|
*.tmp
|
|
*.bak
|
|
tmp/
|
|
temp/
|
|
|
|
# Editors and local tooling
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea/
|
|
.trae/
|
|
.vercel/
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|