61 lines
506 B
Text
61 lines
506 B
Text
# Binaries
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
bin/
|
|
veza-api
|
|
veza-api-simple
|
|
|
|
# Test files
|
|
*_test.go
|
|
*.test
|
|
testdata/
|
|
**/*_test.go
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
README.md
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Build artifacts
|
|
*.out
|
|
coverage/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Dependencies (will be installed in container)
|
|
vendor/
|
|
|
|
# Scripts (not needed in container)
|
|
scripts/
|
|
|