{% extends "base.html" %} {% block title %}{{ addon.addon_name }} - Addon Details - Hop3 Dashboard{% endblock %} {% block content %}

{{ addon.addon_name }}

{{ addon.addon_type }} attached to {{ addon.app_name }}

{% if info and not info.error %}
Database Size
{{ info.size_mb }} MB
Tables
{{ info.table_count }}
Host
{{ info.host }}
Port
{{ info.port }}
{% endif %}

Connection Details

Database Name
{{ info.database if info else addon.addon_name }}
User
{{ info.user if info else 'N/A' }}
Connection URL
{{ connection_details.DATABASE_URL if connection_details else 'N/A' }}
{% if connection_details %}

Environment Variables

These environment variables are automatically injected into your application.

{% for key, value in connection_details.items() %} {% endfor %}
Variable Value Actions
{{ key }} {{ value }}
{% endif %} {% if info and info.version %}

Version Information

{{ info.version }}
{% endif %} {% if info and info.error %}

Unable to connect to service

{{ info.error }}

{% endif %}

Manage this service via CLI

  • hop3 addon show {{ addon.addon_name }} - View service information
  • hop3 backup create --app {{ addon.app_name }} - Create backup (includes this service)
  • hop3 addon destroy {{ addon.addon_name }} - Delete this service
{% endblock %}