- Add scripts/build-package.sh for production-ready packages - VCS-agnostic archive creation (git/hg/bzr/fossil support) - Automatic version detection from VERSION file or git tags - Secure exclusions for development files and secrets - Package validation and content verification - Support for explicit version override Creates dist/furt-api-gateway-vX.Y.Z.tar.gz with clean structure for deployment without development dependencies. Related to DAW/furt#88
70 lines
857 B
Text
70 lines
857 B
Text
# Environment variables (NEVER commit!)
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
.env.development
|
|
# Note: .env.example SHOULD be included for users
|
|
|
|
# Lua specific
|
|
*.luac
|
|
.luarocks/
|
|
luarocks.lock
|
|
|
|
# Furt runtime/build artifacts
|
|
bin/
|
|
logs/
|
|
tmp/
|
|
pid/
|
|
dist/
|
|
scripts/upload-package.sh
|
|
|
|
# Issue creation scripts (these create issues, don't version them)
|
|
scripts/gitea-issues/
|
|
|
|
# Gitea internal workflow (not for end users)
|
|
.gitea/
|
|
|
|
# Gitea Tools
|
|
tools/gitea
|
|
issue-*.md
|
|
|
|
# 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
|
|
|