11 lines
558 B
Text
11 lines
558 B
Text
# PostgreSQL connection string for the Scrum4Me database
|
|
DATABASE_URL="postgresql://user:pass@host:5432/dbname"
|
|
|
|
# API token from Scrum4Me → /settings/tokens
|
|
SCRUM4ME_TOKEN=""
|
|
|
|
# Internal push endpoint (main-app) for web-push notifications
|
|
# Set to the main-app /api/internal/push/send URL; leave empty to disable push (feature-gated).
|
|
INTERNAL_PUSH_URL="https://scrum4me.example.com/api/internal/push/send"
|
|
# Shared secret (≥32 chars) — must match INTERNAL_PUSH_SECRET in the main-app env.
|
|
INTERNAL_PUSH_SECRET="<generate-with: openssl rand -hex 32>"
|