63 lines
615 B
Plaintext
63 lines
615 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
docs/
|
|
|
|
# Development files
|
|
.air.toml
|
|
Makefile
|
|
|
|
# Database files (should use volume mounts)
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Test files
|
|
*_test.go
|
|
test_*.html
|
|
geolocation_test.html
|
|
|
|
# Build artifacts
|
|
tankstopp
|
|
main
|
|
*.exe
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Development config (use production config in container)
|
|
config.development.yaml
|
|
.env*
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Node modules (if any)
|
|
node_modules/
|
|
|
|
# Coverage files
|
|
*.out
|
|
coverage.html
|
|
|
|
# Air live reload
|
|
tmp/
|