add env for FDSIK

This commit is contained in:
Matthias Hochmeister
2026-03-13 10:30:16 +01:00
parent 11fb533ad6
commit 76327832d1
2 changed files with 19 additions and 0 deletions

View File

@@ -189,6 +189,21 @@ VIKUNJA_URL=https://tasks.feuerwehr-rems.at
# WARNING: Keep this secret!
VIKUNJA_API_TOKEN=your_vikunja_api_token
# ============================================================================
# FDISK SYNC CONFIGURATION
# ============================================================================
# FDISK login credentials
# Used by the fdisk-sync service to scrape member data from app.fdisk.at
# REQUIRED for the sync service to work
FDISK_USERNAME=your_fdisk_username
FDISK_PASSWORD=your_fdisk_password
# Internal URL of the fdisk-sync control server
# Used by the backend to proxy manual trigger and log requests
# In Docker Compose this is fixed — only change if you remap the port
FDISK_SYNC_URL=http://fdisk-sync:3001
# ============================================================================
# LOGGING CONFIGURATION (Optional)
# ============================================================================

View File

@@ -9,3 +9,7 @@ DB_PORT=5432
DB_NAME=feuerwehr_prod
DB_USER=prod_user
DB_PASSWORD=
# HTTP control server port (used by admin UI for manual trigger + logs)
# Default: 3001
SYNC_HTTP_PORT=3001