35 lines
720 B
Bash
35 lines
720 B
Bash
# Flask-Configuration
|
|
SECRET_KEY="e2460fd1be9778d6a17aaa7e98676b042936856d70c3f5b2"
|
|
REDEEM_SECRET="590ba02d77e340284e48075fee6ff692"
|
|
WTF_CSRF_SECRET_KEY="2377b17a84388b7c9ff2fce049dc1898"
|
|
|
|
# locales
|
|
BABEL_DEFAULT_LOCALE="en"
|
|
BABEL_SUPPORTED_LOCALES="de,en"
|
|
BABEL_TRANSLATION_DIRECTORIES="translations"
|
|
|
|
# Timezone
|
|
TZ=Europe/Berlin
|
|
|
|
# Security
|
|
SESSION_COOKIE_SECURE="False"
|
|
CSRF_ENABLED="True"
|
|
# Account registration
|
|
REGISTRATION_ENABLED="True"
|
|
|
|
# checking interval if keys have to be redeemed before a specific date
|
|
CHECK_EXPIRING_KEYS_INTERVAL_HOURS=6
|
|
|
|
# Pushover
|
|
PUSHOVER_APP_TOKEN=""
|
|
PUSHOVER_USER_KEY=""
|
|
|
|
# Gotify
|
|
GOTIFY_URL=""
|
|
GOTIFY_TOKEN=""
|
|
|
|
# Matrix
|
|
MATRIX_HOMESERVER=""
|
|
MATRIX_ACCESS_TOKEN=""
|
|
MATRIX_ROOM_ID=""
|