63 lines
617 B
Plaintext
63 lines
617 B
Plaintext
# Binaries
|
|
bin/
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary
|
|
*.test
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
*.log.*
|
|
|
|
# Data
|
|
data/
|
|
storage.json
|
|
|
|
# Production configs (keep example configs)
|
|
config/bootstrap.prod.json
|
|
config/bootstrap.production.json
|
|
config/*.prod.json
|
|
config/*.production.json
|
|
|
|
# Secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
secrets/
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Swagger 生成的文档 (可通过 swag init 重新生成)
|
|
docs/swagger/
|