All checks were successful
Test Asgard Runner / test (push) Successful in 3s
maps/ gitignore rule was catching backend-nest/src/modules/maps/. Scoped to /maps/ (root only) so runtime data is still ignored but source code isn't. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
34 lines
332 B
Plaintext
34 lines
332 B
Plaintext
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Rust
|
|
backend/target/
|
|
**/*.rs.bk
|
|
|
|
# Node / Frontend
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker volumes (local dev)
|
|
docker/pg_data/
|
|
docker/nats_data/
|
|
|
|
# Maps and backups (runtime data, top-level only)
|
|
/maps/
|
|
/backups/
|
|
|
|
# Logs
|
|
*.log
|