mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-19 13:21:46 +00:00
68a3036909
server/data is for runtime state (SQLite, backups, logs, tmp) — the airports snapshot is a shipped dataset, not user data, and it being in there forced us to poke a hole in both .dockerignore and .gitignore. Move it to server/assets/ and drop the exceptions; service and build script point at the new path.
61 lines
578 B
Plaintext
61 lines
578 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
client/dist/
|
|
|
|
# Generated PWA icons (built from SVG via prebuild)
|
|
client/public/icons/*.png
|
|
|
|
# Database
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.sqlite
|
|
*.sqlite-shm
|
|
*.sqlite-wal
|
|
|
|
# User data
|
|
server/data/*
|
|
server/uploads/
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
.claude/
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime data
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage
|
|
coverage
|
|
*.lcov
|
|
.nyc_output
|
|
|
|
# Cache
|
|
.npm
|
|
.eslintcache
|
|
.cache
|
|
*.tsbuildinfo
|
|
*.tgz
|
|
|
|
.scannerwork
|
|
test-data |