{% extends "base.html" %} {% block title %}{{ app_name }} Environment Variables - Hop3 Dashboard{% endblock %} {% block content %}

Environment Variables

Configuration and secrets for {{ app_name }}

Note: Environment variables can only be modified via the CLI. Use hop3 config:set {{ app_name }} KEY=value to add or update variables.

Showing of variables
{% if env_vars %}
Total Variables
{{ env_vars | length }}
Addon Variables
{{ service_var_count }}
Secrets
Regular Variables
{{ env_vars | length - service_var_count }}
{% else %}

No environment variables

Get started by adding your first environment variable via the CLI.

hop3 config:set {{ app_name }} KEY=value
{% endif %}

Managing Environment Variables

Set a variable: hop3 config:set {{ app_name }} KEY=value

Remove a variable: hop3 config:unset {{ app_name }} KEY

List all variables: hop3 config {{ app_name }}

{% endblock %}