rs_maps/.gitignore
2026-08-03 09:42:13 +01:00

24 lines
438 B
Text

# .gitignore
# Build output. Several GB after a release build — never commit this.
/target/
# Secrets: REG_TOKEN, database password, SMTP credentials.
# .env.example is the committed template; .env itself never goes in.
.env
.env.local
.env.*
!.env.example
# Release artifacts produced by rust_push.sh
*.tar.gz
# Local GPX scratch, if you keep any in-tree while testing
/gpx/
# Editor / OS noise
*.swp
*~
.DS_Store
.idea/
.vscode/