{% 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 addons:create postgres <name> - Create a PostgreSQL databasehop3 addons:attach <name> --app <app> - Link database to apphop3 addons:info <name> - View addon informationhop3 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.
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