47 lines
382 B
Plaintext
47 lines
382 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDEs
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build artifacts
|
|
main
|
|
*.exe
|
|
*.test
|
|
*.out
|
|
|
|
# Logs
|
|
*.log
|
|
server.log
|
|
app_routes.log
|
|
|
|
# Local dev
|
|
.env.local
|
|
.env.development
|
|
|
|
# Uploads (will be mounted as volume)
|
|
uploads/*
|
|
!uploads/.gitkeep
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
CHANGELOG.md
|
|
*.txt
|
|
|
|
# Test files
|
|
*_test.go
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|