{% extends "base.html" %} {% block title %}Addons - Hop3 Dashboard{% endblock %} {% block content %}
Manage attached addons like PostgreSQL, Redis, and more.
| Addon Name | Type | Application | Created | Actions |
|---|---|---|---|---|
| {{ addon.addon_name }} | {{ addon.addon_type }} | {{ addon.app_name }} | {{ addon.created_at }} | View Details |
Addons are currently managed via the CLI for reliability and automation. Common commands:
hop3 addon create postgres <name> - Create a PostgreSQL databasehop3 addon attach <name> --app <app> - Link database to apphop3 addon show <name> - View addon informationhop3 addon destroy <name> - Delete an addon💡 Tip: Use this dashboard to view connection details and monitor your addons. Create and destroy operations are safer via CLI.
Create your first addon using the CLI.
Example: Create and link a PostgreSQL database
hop3 addon create postgres mydb
hop3 addon attach mydb --app myapp