Manage secretes

Back to Admin
{% with messages = get_flashed_messages() %} {% if messages %} {% for m in messages %}
{{ m }}
{% endfor %} {% endif %} {% endwith %}

Add / update secret

Use uppercase with underscores. Example: PIXABAY_API_KEY
Values are never displayed again after saving.

Stored secret names

{% if not secret_names %}
No secretes saved yet.
{% else %} {% for n in secret_names %} {% endfor %}
Name Action
{{ n }}
To update a value, just re-save using the same name.
{% endif %}