infra-vintage/openbikesensor-portal/.env.example

31 lines
809 B
Bash

###################################################
# Portal
###################################################
# Appears unused, configured in caddy on flora-6
OBS_PORTAL_URI=obs-portal.pub.solar
# Postgres + osm2pgsql
OBS_POSTGRES_HOST=postgres
OBS_POSTGRES_USER=obs
OBS_POSTGRES_PASSWORD=<<TODO>>
OBS_POSTGRES_DB=obs
OBS_POSTGRES_MAX_OVERFLOW=20
OBS_POSTGRES_POOL_SIZE=40
# Portal
OBS_HOST=0.0.0.0
OBS_PORT=3000
OBS_SECRET=<<TODO>>
OBS_POSTGRES_URL=postgresql+asyncpg://obs:<<TODO>>@obs-portal-db.svc.${TRITON_CNS_SEARCH_DOMAIN_PRIVATE}/obs
OBS_KEYCLOAK_URL=https://auth.pub.solar/realms/pub.solar/
OBS_KEYCLOAK_CLIENT_ID=openbikesensor-portal
OBS_KEYCLOAK_CLIENT_SECRET=<<TODO>>
OBS_DEDICATED_WORKER="True"
OBS_DATA_DIR=/data
OBS_PROXIES_COUNT=1
###################################################