{% extends "base.html" %} {% block title %}Addons - Hop3 Dashboard{% endblock %} {% block content %}

Addons

Manage attached addons like PostgreSQL, Redis, and more.

{% if addons %}
{% for addon in addons %} {% endfor %}
Addon Name Type Application Created Actions
{{ addon.addon_name }} {{ addon.addon_type }} {{ addon.app_name }} {{ addon.created_at }} View Details

Creating and Managing Addons

Addons are currently managed via the CLI for reliability and automation. Common commands:

  • hop3 addons:create postgres <name> - Create a PostgreSQL database
  • hop3 addons:attach <name> --app <app> - Link database to app
  • hop3 addons:info <name> - View addon information
  • hop3 addons:destroy <name> - Delete a addon

💡 Tip: Use this dashboard to view connection details and monitor your addons. Create and destroy operations are safer via CLI.

{% else %}

No addons yet

Create your first addon using the CLI.

Example: Create and link a PostgreSQL database

hop3 addons:create postgres mydb
hop3 addons:attach mydb --app myapp
{% endif %}
{% endblock %}