67 lines
613 B
Plaintext
67 lines
613 B
Plaintext
# Binary output
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
/server
|
|
/server.exe
|
|
|
|
# Test binary
|
|
*.test
|
|
|
|
# Output of go coverage
|
|
*.out
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
|
|
# IDE - JetBrains
|
|
.idea/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
|
|
# IDE - VSCode
|
|
.vscode/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local configuration (sensitive)
|
|
config.local.yaml
|
|
config.local.yml
|
|
*.local.yaml
|
|
*.local.yml
|
|
|
|
# Certificates and keys (sensitive)
|
|
*.pem
|
|
*.key
|
|
cert/
|
|
certs/
|
|
|
|
# Uploaded files
|
|
uploads/
|
|
chunks/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Environment files (sensitive)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.swp
|
|
*~
|
|
|
|
# Kilocode
|
|
.kilocode/
|