58 lines
622 B
Text
Executable file
58 lines
622 B
Text
Executable file
# =============================================================================
|
|
# GoHorse Backend - Git Ignore
|
|
# =============================================================================
|
|
|
|
# Binaries
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
/main
|
|
/api
|
|
/backend
|
|
|
|
# Build cache
|
|
/bin/
|
|
/build/
|
|
/dist/
|
|
|
|
# Go coverage
|
|
*.out
|
|
coverage.html
|
|
coverage.txt
|
|
|
|
# Go workspace
|
|
go.work
|
|
go.work.sum
|
|
|
|
# Vendor (uncomment if using go mod vendor)
|
|
# vendor/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temp
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.log
|
|
|
|
# Debug
|
|
__debug_bin*
|
|
debug.test
|
|
test-output/
|