33 lines
428 B
Plaintext
33 lines
428 B
Plaintext
# Local runtime data / secrets
|
|
data/
|
|
backend/data/*.json
|
|
|
|
# Allow checked-in examples/templates
|
|
!backend/data/*.example.json
|
|
|
|
# Dependencies / build output
|
|
node_modules/
|
|
backend/node_modules/
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/dev-dist/
|
|
dist/
|
|
build/
|
|
.vite/
|
|
.cache/
|
|
coverage/
|
|
|
|
# Env files
|
|
.env
|
|
.env.*
|
|
*.env
|
|
|
|
# Logs / OS clutter
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
.DS_Store
|
|
Thumbs.db
|