34 lines
No EOL
310 B
Text
34 lines
No EOL
310 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker
|
|
Dockerfile
|
|
Containerfile
|
|
.dockerignore
|
|
|
|
# Build artifacts
|
|
gocheck
|
|
gocheck-*
|
|
*.exe
|
|
|
|
# Database files (will be created at runtime)
|
|
checklists.db
|
|
checklists.db-*
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
/tmp/
|
|
/temp/ |