- Remove Go artifacts (cmd/, internal/, pkg/, go.mod) - Move furt-lua/* content to repository root - Restructure as clean src/, config/, scripts/, tests/ layout - Rewrite README.md as practical tool documentation - Remove timeline references and marketing language - Clean .gitignore from Go-era artifacts - Update config/server.lua with example.org defaults - Add .env.production to .gitignore for security Repository now ready for open source distribution with minimal, focused structure and generic configuration templates. close issue DAW/furt#86
58 lines
647 B
Text
58 lines
647 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
|
|
|