24 lines
438 B
Text
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/
|