- Exclude config.json and admin.json in .gitignore so live settings/passwords are never overwritten by git - Auto-generate config.json and admin.json with defaults if missing - Add config.json.example and admin.json.example reference templates - Add System Update page (/admin/update) in Admin Console to pull updates via Git with 1 click - Log effective page name in index.php instead of literal 'auto' - Add extra HAProxy/PFSense proxy headers to RequestLogger::getClientIp()
31 lines
307 B
Plaintext
31 lines
307 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
|
|
# Build outputs
|
|
*.log
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Cache
|
|
.cache/
|
|
.sass-cache/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Local configuration & credentials
|
|
config.json
|
|
admin/config/admin.json
|
|
|
|
# No content
|
|
content/
|
|
!content/.gitkeep
|