- Replace goto statements with if-not pattern for Lua 5.1 compatibility - Validate mail config only for API keys with mail:send permissions - Safe display of API key info for monitoring keys without mail config - Fix health check SMTP detection for new config structure - Multi-tenant system tested and working on port 7811 Fixes multi-tenant config parsing, validation, and health checks. Related to DAW/furt#89
59 lines
664 B
Text
59 lines
664 B
Text
# Environment variables (NEVER commit!)
|
|
.env
|
|
|
|
# Lua specific
|
|
*.luac
|
|
.luarocks/
|
|
luarocks.lock
|
|
|
|
# Furt runtime/build artifacts
|
|
bin/
|
|
logs/
|
|
tmp/
|
|
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.lua
|
|
config.production.lua
|
|
|
|
config/furt.conf
|