81 lines
945 B
Text
81 lines
945 B
Text
# Environment variables (NEVER commit!)
|
|
.env
|
|
|
|
# Go build artifacts
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
furt-gateway
|
|
formular2mail-service
|
|
sagjan-service
|
|
/build/
|
|
/dist/
|
|
|
|
# Go test files
|
|
*.test
|
|
*.out
|
|
coverage.txt
|
|
coverage.html
|
|
|
|
# Go modules
|
|
/vendor/
|
|
|
|
# Lua specific
|
|
*.luac
|
|
.luarocks/
|
|
luarocks.lock
|
|
|
|
# Furt-lua runtime/build artifacts
|
|
furt-lua/bin/
|
|
furt-lua/logs/
|
|
furt-lua/tmp/
|
|
furt-lua/pid/
|
|
|
|
# Issue creation scripts (these create issues, don't version them)
|
|
scripts/gitea-issues/
|
|
|
|
# Gitea Tools
|
|
tools/gitea
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
.temp
|
|
.backup
|
|
|
|
# Development files
|
|
_personal/
|
|
_drafts/
|
|
_notes/
|
|
debug.log
|
|
|
|
# Database files (for testing)
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Configuration files with secrets
|
|
config.local.yaml
|
|
config.production.yaml
|
|
furt-lua/config/local.lua
|
|
furt-lua/config/production.lua
|
|
|