# Flask-Configuration SECRET_KEY="1dc3d95006f7466670ac2d705ce43dc4a5ad8e2189dbe539" REDEEM_SECRET="a50a961667ded234b1e59532ab7e27e1" WTF_CSRF_SECRET_KEY="845ae46bd1bea30311e98df232d78b4e" # 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