obs-portal/api/config.py.example

65 lines
2.3 KiB
Plaintext
Raw Normal View History

2021-11-04 17:13:24 +00:00
# Bind address of the server
HOST = "127.0.0.1"
PORT = 3000
# Extended log output, but slower
DEBUG = False
VERBOSE = DEBUG
2022-09-16 08:14:56 +00:00
AUTO_RELOAD = DEBUG
2021-11-04 17:13:24 +00:00
# Required to encrypt or sign sessions, cookies, tokens, etc.
SECRET = "!!!<<<CHANGEME>>>!!!"
# Connection to the database
POSTGRES_URL = "postgresql+asyncpg://user:pass@host/dbname"
POSTGRES_POOL_SIZE = 20
POSTGRES_MAX_OVERFLOW = 2 * POSTGRES_POOL_SIZE
2021-11-04 17:13:24 +00:00
# URL to the keycloak realm, as reachable by the API service. This is not
# necessarily its publicly reachable URL, keycloak advertises that iself.
KEYCLOAK_URL = "http://localhost:1234/auth/realms/obs/"
# Auth client credentials
KEYCLOAK_CLIENT_ID = "portal"
KEYCLOAK_CLIENT_SECRET = "00000000-0000-0000-0000-000000000000"
2021-11-14 22:42:02 +00:00
# Whether the API should run the worker loop, or a dedicated worker is used
DEDICATED_WORKER = True
2021-11-04 17:13:24 +00:00
# The root of the frontend. Needed for redirecting after login, and for CORS.
2021-11-14 22:42:02 +00:00
# Set to None if frontend is served by the API.
FRONTEND_URL = None
FRONTEND_HTTPS = True
2021-11-14 22:42:02 +00:00
# Where to find the compiled frontend assets (must include index.html), or None
# to disable serving the frontend.
FRONTEND_DIR = "../frontend/build/"
# Can be an object or a JSON string
FRONTEND_CONFIG = {
"imprintUrl": "https://example.com/imprint",
"privacyPolicyUrl": "https://example.com/privacy",
# "termsUrl": "https://example.com/user_terms_and_conditions", # Link is only shown when set
"mapHome": {"zoom": 6, "longitude": 10.2, "latitude": 51.3},
"banner": {"text": "This is a test installation.", "style": "warning"},
2021-11-14 22:42:02 +00:00
}
2021-11-04 17:13:24 +00:00
2021-11-16 20:59:37 +00:00
# If the API should serve generated tiles, this is the path where the tiles are
# built. This is an experimental option and probably very inefficient, a proper
# tileserver should be prefered. Set to None to disable.
TILES_FILE = None
2021-11-04 17:13:24 +00:00
# Path overrides:
# API_ROOT_DIR = "??" # default: api/ inside repository
# DATA_DIR = "??" # default: $API_ROOT_DIR/..
# PROCESSING_DIR = "??" # default: DATA_DIR/processing
# PROCESSING_OUTPUT_DIR = "??" # default: DATA_DIR/processing-output
# TRACKS_DIR = "??" # default: DATA_DIR/tracks
# OBS_FACE_CACHE_DIR = "??" # default: DATA_DIR/obs-face-cache
2021-11-16 20:59:37 +00:00
# Additional allowed origins for CORS headers. The FRONTEND_URL is included by
# default. Python list, or whitespace separated string.
ADDITIONAL_CORS_ORIGINS = None
2021-11-04 17:13:24 +00:00
# vim: set ft=python :