|
|
@@ -0,0 +1,26 @@
|
|
|
+# Entra ID / OIDC
|
|
|
+ENTRA_TENANT_ID=
|
|
|
+ENTRA_CLIENT_ID=
|
|
|
+ENTRA_CLIENT_SECRET=
|
|
|
+
|
|
|
+LOCAL_ADMIN_EMAIL=alessandro.chiapparini@zhdk.ch
|
|
|
+LOCAL_ADMIN_PASSWORD=$2y$10$zxjnR0IJG/jsgtZWoQlWPOyK1.tZKzYyNonFboLu9umsxQqTQQAMW
|
|
|
+LOCAL_ADMIN_NAME=Alessandro
|
|
|
+
|
|
|
+# Base URL the app is reachable at (no trailing slash).
|
|
|
+# Used to build the OIDC redirect URI {APP_BASE_URL}/auth/callback
|
|
|
+APP_BASE_URL=http://localhost:8088
|
|
|
+
|
|
|
+# Random string (>=32 bytes). Used to salt the session cookie name / CSRF tokens.
|
|
|
+SESSION_SECRET=asd1ufp983Dh3edja9du3oTlskfdjpgh8hrkjend3a93uhHckuchk48hf0kQjbds
|
|
|
+
|
|
|
+# Path to the SQLite database file inside the container. Leave as-is unless
|
|
|
+# you have a specific reason to change it. The parent dir is the mounted
|
|
|
+# volume (/var/www/data).
|
|
|
+DB_PATH=/var/www/data/app.sqlite
|
|
|
+
|
|
|
+# Session handler files directory.
|
|
|
+SESSION_PATH=/var/www/data/sessions
|
|
|
+
|
|
|
+# 'production' disables verbose error output. Anything else is treated as dev.
|
|
|
+APP_ENV=development
|