63 lines
721 B
Plaintext
63 lines
721 B
Plaintext
# Version control
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Build artifacts
|
|
/bin/
|
|
/dist/
|
|
|
|
# IDE specific files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment files (except .env.example)
|
|
.env
|
|
!.env.example
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Test files
|
|
*_test.go
|
|
/test/
|
|
/coverage.txt
|
|
|
|
# Dependency directories
|
|
/vendor/
|
|
/node_modules/
|
|
|
|
# Local development files
|
|
docker-compose.override.yml
|
|
|
|
# Build cache
|
|
.cache/
|
|
.air.toml
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Local configuration overrides
|
|
configs/local.*
|
|
|
|
# Documentation
|
|
/docs/
|
|
*.md
|
|
|
|
# Ignore Dockerfile and docker-compose files (if you're building from source)
|
|
# !Dockerfile
|
|
# !docker-compose*.yml
|