New install method: curl one-liner downloads a lightweight release tarball (~9 MB) and runs the config wizard. No git clone needed, no TypeScript compilation — pulls pre-built images from Gitea registry. - docker-compose.prod.yml: production compose without build blocks or source code volume mounts; IMAGE_TAG defaults to latest - scripts/install.sh: curl-friendly installer (downloads tarball, extracts, runs config.sh) - scripts/build-release.sh: creates release tarball from dev repo with only runtime files (configs, scripts, docs, empty data dirs) - config.sh: release-mode detection (VERSION file + no .git dir), auto-sets IMAGE_TAG=latest and NODE_ENV=production - upgrade.sh: release-mode upgrade path (downloads new tarball from Gitea Releases API instead of git pull, always uses registry mode) - upgrade-check.sh: release-mode version check via Gitea API - .gitignore: exclude releases/ and api/dist/ - Docs: updated getting-started with pre-built install instructions Bunker Admin
72 lines
1.3 KiB
Plaintext
72 lines
1.3 KiB
Plaintext
# Node modules
|
|
node_modules/
|
|
*/node_modules/
|
|
**/node_modules/
|
|
|
|
/configs/code-server/.local/*
|
|
!/configs/code-server/.local/.gitkeep
|
|
|
|
/configs/code-server/.config/*
|
|
!/configs/code-server/.config/.gitkeep
|
|
|
|
# Root assets (generated by containers)
|
|
/assets/
|
|
|
|
# Homepage logs (created by container)
|
|
/configs/homepage/logs/*
|
|
!/configs/homepage/logs/.gitkeep
|
|
|
|
.env
|
|
.env*
|
|
!.env.example
|
|
|
|
/configs/cloudflare/*.json
|
|
/configs/cloudflare/*.yaml
|
|
/configs/cloudflare/*.yml
|
|
|
|
.excalidraw
|
|
|
|
/.VSCodeCounter
|
|
|
|
/influence/app/public/uploadsdata/
|
|
|
|
# NAR data directory (large voter registry files)
|
|
/data/*
|
|
!/data/upgrade/
|
|
/data/upgrade/*.json
|
|
|
|
# Media files (managed by Docker volumes, not git)
|
|
/media/
|
|
|
|
# Nginx generated configs (built from *.template at container startup)
|
|
nginx/conf.d/*.conf
|
|
|
|
# Ansible per-instance override (generated by Bunker Ops)
|
|
docker-compose.override.yml
|
|
|
|
# Build output
|
|
/admin/dist/
|
|
|
|
# Core dumps
|
|
core.*
|
|
*/core.*
|
|
|
|
# MkDocs core binary and container-generated assets (owned by root, not stashable)
|
|
/mkdocs/core
|
|
/mkdocs/assets/
|
|
|
|
# Upgrade artifacts
|
|
/logs/
|
|
/backups/
|
|
.upgrade.lock
|
|
|
|
# Release tarballs (generated by build-release.sh)
|
|
/releases/
|
|
|
|
# API compiled output (generated by tsc, baked into Docker images)
|
|
/api/dist/
|
|
|
|
# Control Panel runtime data (managed deployments + backups)
|
|
/changemaker-control-panel/instances/
|
|
/changemaker-control-panel/backups/
|