mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-19 05:11: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.
33 lines
377 B
Plaintext
33 lines
377 B
Plaintext
node_modules
|
|
client/node_modules
|
|
server/node_modules
|
|
client/dist
|
|
data
|
|
uploads
|
|
.git
|
|
.github
|
|
**/.env
|
|
**/.env.*
|
|
*.log
|
|
*.md
|
|
!client/**/*.md
|
|
chart/
|
|
docs/
|
|
docker-compose.yml
|
|
unraid-template.xml
|
|
*.sqlite
|
|
*.sqlite-shm
|
|
*.sqlite-wal
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
**/coverage
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode
|
|
.idea
|
|
sonar-project.properties
|
|
server/tests/
|
|
server/vitest.config.ts
|
|
server/reset-admin.js
|