{% extends "base.html" %} {% block title %}Environment Configuration{% endblock %} {% block content %}
This page displays the current configuration settings for the application. For security reasons, sensitive values like passwords, tokens, and keys may be hidden.
Debug Mode: {{ "Enabled" if debug_enabled else "Disabled" }}
App Version: {{ app_version }}
| Setting | Value | Status |
|---|---|---|
| {{ item.name }} | {% if debug_enabled %} {% if item.value is none %} NULL {% elif item.value == "" %} (empty string) {% else %} {{ item.value }} {% endif %} {% else %} *** hidden in non-debug mode *** {% endif %} | {% if item.is_configured %} Configured {% else %} Not Configured {% endif %} |
Configuration is loaded from environment variables or .env files. Make sure your environment variables are correctly set.