-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env
executable file
·26 lines (22 loc) · 1.14 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FLASK_CONFIG=development
APP_DEV_SETTINGS=backend.settings.DevelopmentConfig
APP_TEST_SETTINGS=backend.settings.TestingConfig
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
DB_NAME=bibbox
DB_SERVICE=postgres
DB_PORT=5432
ADMINER_DEFAULT_DB_DRIVER=pgsql
ADMINER_DEFAULT_DB_HOST=postgres
ADMINER_DEFAULT_DB_NAME=bibbox
KEYCLOAK_CLIENT_ID='sys-bibbox-backend' # name of the keycloak client for the backend
KEYCLOAK_REALM='sys-bibbox' # name of the keycloak realm
KEYCLOAK_CREATE_ADMIN_USER= true
KEYCLOAK_SERVER_URL='http://bibbox-sys-commander-keycloak:8080' #
KEYCLOAK_ADMIN_CLIENT_ID='admin-cli' # name of the keycloak client for admin operations
KEYCLOAK_CLIENT_SECRET='bZ78ujjucPztYLjQ01ToxOcvL0TUVDFA' # found in keycloak-client: sys-bibbox-backend under credentials
KEYCLOAK_ADMIN_CLIENT_SECRET='XWJ1jmMgIPc8QrK0YrZ8csN1Vu6xQSI5' # found in keycloak-client: admin-cli under credentials
# KEYCLOAK_USER='admin'
# KEYCLOAK_PASSWORD='admin'
KEYCLOAK_ADMIN='admin' # can be configured at container creation, also used for user mgmt api in backend
KEYCLOAK_ADMIN_PASSWORD='admin' # can be configured at container creation, also used for user mgmt api in backend