{% if _cfg("secret-key") == "hello world" %}
You need to change the secret key to something other than "hello world".
{% else %}
Your secret key looks good.
{% endif %}
{% if _cfg("domain") == "localhost:5000" %}
You should change your domain to something other than localhost.
{% else %}
Your domain is set to "{{_cfg("domain")}}".
{% endif %}
{% if _cfg("protocol") != "https" %}
Stripe requires your website to use HTTPS.
{% else %}
Stripe requires your website to use HTTPS.
{% endif %}
{% if not _cfg("smtp-host") %}
You should configure an SMTP server to send emails with.
{% else %}
Your email configuration looks good.
{% endif %}
{% if not _cfg("stripe-secret") or not _cfg("stripe-publish") %}
Your Stripe API keys are not in your config file.
{% else %}
Your Stripe API keys look good.
{% endif %}
{% if not _cfg("patreon-access-token") or not _cfg("patreon-campaign") %}
Your Patreon access token and campaign are not configured (optional).
{% else %}
Your Patreon integration looks good. We'll integrate with
{{ _cfg("patreon-campaign") }}'s campaign.
{% endif %}
You can make changes and refresh this page if you like.