{% 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. {% elif request.query_params.get('action') == 'backup' %} Backup of "{{ app.name }}" completed. {% endif %}
Failed to {{ request.query_params.get('action', 'complete the action') }} application "{{ app.name }}".
{% if request.query_params.get('error') %}{{ request.query_params.get('error') }}
{% endif %}
Worker information below may be incomplete.
{{ app.config_error }}
Application details and process information
| Process Type | Command |
|---|---|
| {{ process_type }} | {{ command }} |
| Addon Name | Type | Attached | Actions |
|---|---|---|---|
| {{ addon.addon_name }} | {{ addon.addon_type }} | {{ addon.created_at }} | View Details |
Hop3 generated an admin account when it installed this app — use it to sign in the first time.
Environment variables are managed via the CLI. Use hop3 config set to add or update variables.