2021-11-04 18:13:24 +01:00
|
|
|
HOST = "0.0.0.0"
|
|
|
|
PORT = 3000
|
2021-11-21 20:17:20 +01:00
|
|
|
DEBUG = True
|
2022-02-18 11:12:42 +01:00
|
|
|
VERBOSE = False
|
2022-09-16 10:14:56 +02:00
|
|
|
AUTO_RELOAD = True
|
2021-11-16 21:59:37 +01:00
|
|
|
SECRET = "!!!!!!!!!!!!CHANGE ME!!!!!!!!!!!!"
|
2021-11-04 18:13:24 +01:00
|
|
|
POSTGRES_URL = "postgresql+asyncpg://obs:obs@postgres/obs"
|
2022-02-08 23:23:29 +01:00
|
|
|
POSTGRES_POOL_SIZE = 20
|
|
|
|
POSTGRES_MAX_OVERFLOW = 2 * POSTGRES_POOL_SIZE
|
2021-11-17 18:33:52 +01:00
|
|
|
KEYCLOAK_URL = "http://keycloak:8080/auth/realms/obs-dev/"
|
2021-11-04 18:13:24 +01:00
|
|
|
KEYCLOAK_CLIENT_ID = "portal"
|
2021-11-21 20:17:20 +01:00
|
|
|
KEYCLOAK_CLIENT_SECRET = "c385278e-bd2e-4f13-9937-34b0c0f44c2d"
|
2021-11-14 23:42:02 +01:00
|
|
|
DEDICATED_WORKER = True
|
2021-12-03 17:54:26 +01:00
|
|
|
API_URL = "http://localhost:3000/"
|
2021-11-16 21:59:37 +01:00
|
|
|
FRONTEND_URL = "http://localhost:3001/"
|
2021-11-25 00:11:21 +01:00
|
|
|
FRONTEND_HTTPS = False
|
2021-11-14 23:42:02 +01:00
|
|
|
FRONTEND_DIR = None
|
2021-12-03 17:31:03 +01:00
|
|
|
FRONTEND_CONFIG = {
|
|
|
|
"imprintUrl": "https://example.com/imprint",
|
|
|
|
"privacyPolicyUrl": "https://example.com/privacy",
|
2023-03-11 16:49:42 +01:00
|
|
|
# "termsUrl": "https://example.com/terms", # Link is only shown when set
|
2021-12-03 17:31:03 +01:00
|
|
|
"mapHome": {"zoom": 6, "longitude": 10.2, "latitude": 51.3},
|
|
|
|
# "banner": {"text": "This is a development installation.", "style": "info"},
|
|
|
|
}
|
|
|
|
|
2021-11-21 17:05:46 +01:00
|
|
|
TILES_FILE = None # "/tiles/tiles.mbtiles"
|
2021-11-04 18:13:24 +01:00
|
|
|
DATA_DIR = "/data"
|
2021-11-16 21:59:37 +01:00
|
|
|
ADDITIONAL_CORS_ORIGINS = [
|
|
|
|
"http://localhost:8880/", # for maputnik on 8880
|
|
|
|
"http://localhost:8888/", # for maputnik on 8888
|
|
|
|
]
|
2021-11-04 18:13:24 +01:00
|
|
|
|
|
|
|
# vim: set ft=python :
|