83 lines
812 B
Plaintext
83 lines
812 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Runtime data
|
|
pids/
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.cover
|
|
|
|
# Node modules (if any frontend assets)
|
|
node_modules/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# Build artifacts
|
|
server
|
|
*.exe
|
|
*.test
|
|
*.prof
|
|
|
|
# Test scripts
|
|
test-build.sh
|
|
|
|
# Temporary directories
|
|
tmp/
|
|
|
|
# Docker files
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Test files
|
|
*_test.go
|
|
|
|
# Migration files (if not needed in container)
|
|
migrations/
|
|
|
|
# Development scripts
|
|
scripts/dev/
|
|
|
|
# Cache directories
|
|
.cache/
|