42 lines
950 B
Bash
42 lines
950 B
Bash
# Flask-Configuration
|
|
SECRET_KEY="ef16ed848264df8391a7f9769f0ac13d5d4c1a711793bb6b"
|
|
REDEEM_SECRET="02c6a04e663604a837141d79e75b0a93"
|
|
WTF_CSRF_SECRET_KEY="5c6c0f730c337afb804ba21c6e1b3f93"
|
|
|
|
# Language Settings
|
|
DEFAULT_LANGUAGE="en"
|
|
SUPPORTED_LANGUAGES="de,en"
|
|
|
|
# Timezone
|
|
TZ=Europe/Berlin
|
|
|
|
# Security
|
|
FORCE_HTTPS=False
|
|
SESSION_COOKIE_SECURE=auto
|
|
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
|
|
|
|
# Want to check prices? Here you are!
|
|
ITAD_API_KEY="your-secret-key-here"
|
|
ITAD_COUNTRY="DE"
|
|
|
|
# Apprise URLs (separate several with a comma or space)
|
|
APPRISE_URLS=""
|
|
|
|
### example for multiple notifications
|
|
#APPRISE_URLS="pover://USER_KEY@APP_TOKEN
|
|
#gotify://gotify.example.com/TOKEN
|
|
#matrixs://TOKEN@matrix.org/!ROOM_ID"
|
|
|
|
# Redis URL
|
|
REDIS_URL=redis://redis:6379/0
|
|
|
|
# Enable Debug (e.g. for VS Code)
|
|
FLASK_DEBUG=1
|
|
DEBUGPY=0
|