2026-03-23 21:28:14 -04:00
|
|
|
# OTSSignsOrchestrator — environment variables
|
|
|
|
|
# Copy to .env and fill in real values before running.
|
2026-03-26 19:34:12 -04:00
|
|
|
#
|
|
|
|
|
# Only TWO secrets are required here — everything else is configured
|
|
|
|
|
# via the admin UI (Settings page) and stored encrypted in PostgreSQL.
|
feat: Implement provisioning pipelines for subscription management
- Add ReactivatePipeline to handle subscription reactivation, including scaling Docker services, health verification, status updates, audit logging, and broadcasting status changes.
- Introduce RotateCredentialsPipeline for OAuth2 credential rotation, managing the deletion of old apps, creation of new ones, credential storage, access verification, and audit logging.
- Create StepRunner to manage job step execution, including lifecycle management and progress broadcasting via SignalR.
- Implement SuspendPipeline for subscription suspension, scaling down services, updating statuses, logging audits, and broadcasting changes.
- Add UpdateScreenLimitPipeline to update Xibo CMS screen limits and record snapshots.
- Introduce XiboFeatureManifests for hardcoded feature ACLs per role.
- Add docker-compose.dev.yml for local development with PostgreSQL setup.
2026-03-18 10:27:26 -04:00
|
|
|
|
2026-03-23 21:28:14 -04:00
|
|
|
# ── PostgreSQL ───────────────────────────────────────────────────────────────
|
2026-03-26 19:34:12 -04:00
|
|
|
# Password for the postgres service AND the app connection string.
|
|
|
|
|
# Generate: openssl rand -base64 32
|
2026-03-23 21:28:14 -04:00
|
|
|
POSTGRES_PASSWORD=changeme
|
|
|
|
|
|
|
|
|
|
# ── JWT ──────────────────────────────────────────────────────────────────────
|
2026-03-26 19:34:12 -04:00
|
|
|
# Key must be at least 32 characters (256-bit).
|
|
|
|
|
# Generate: openssl rand -base64 48
|
|
|
|
|
JWT_KEY=change-me-to-a-random-256-bit-key
|