43 lines
474 B
Plaintext
43 lines
474 B
Plaintext
# Dependencies and build output
|
|
node_modules/
|
|
dist/
|
|
.vite/
|
|
|
|
# Local configuration and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!deploy/.env.production.example
|
|
*.local
|
|
|
|
# Runtime state and generated media
|
|
data/
|
|
storage/
|
|
uploads/
|
|
backups/
|
|
*.sqlite
|
|
*.sqlite-shm
|
|
*.sqlite-wal
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Local QA artifacts
|
|
qa-*.png
|
|
qa-*.jpg
|
|
qa-*.jpeg
|
|
playwright-report/
|
|
test-results/
|
|
|
|
# OS/editor files
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs and temporary files
|
|
*.log
|
|
*.tmp
|
|
*.bak
|