64 lines
667 B
Plaintext
64 lines
667 B
Plaintext
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
node_modules/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE specific files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build output
|
|
bin/
|
|
dist/
|
|
build/
|
|
backend/bin/
|
|
frontend/dist/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
backend/logs/
|
|
backend/*.log
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Data directories
|
|
backend/data/
|
|
backend/config/bootstrap.json
|
|
backend/config/bootstrap.prod.json
|
|
|
|
# Docker volumes
|
|
postgres_data/
|
|
redis_data/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|