{% extends "base.html" %} {% block title %}{{ app.name }} - Hop3 Dashboard{% endblock %} {% block content %}
Application "{{ app.name }}" has been created. To deploy your code, use the CLI:
hop3 deploy {{ app.name }} /path/to/your/app
{% if request.query_params.get('action') == 'restart' %} Application "{{ app.name }}" is restarting. {% elif request.query_params.get('action') == 'stop' %} Application "{{ app.name }}" has been stopped. {% endif %}
{% if request.query_params.get('action') == 'restart' %} Failed to restart application "{{ app.name }}". Check the logs for details. {% elif request.query_params.get('action') == 'stop' %} Failed to stop application "{{ app.name }}". Check the logs for details. {% endif %}
Application details and process information
| Process Type | Command |
|---|---|
| {{ process_type }} | {{ command }} |
| Addon Name | Type | Attached | Actions |
|---|---|---|---|
| {{ addon.addon_name }} | {{ service.service_type }} | {{ service.created_at }} | View Details |
Environment variables are managed via the CLI. Use hop3 config:set to add or update variables.