{% extends "base.html" %} {% block title %}Environment Configuration{% endblock %} {% block content %}

Environment Configuration

This page displays the current configuration settings for the application. For security reasons, sensitive values like passwords, tokens, and keys may be hidden.

{% for category, items in settings.items() %}

{{ category }} Configuration

{% for item in items %} {% endfor %}
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 %}
{% endfor %}

Environment Variables

Configuration is loaded from environment variables or .env files. Make sure your environment variables are correctly set.

{% endblock %}