{% extends "base.html" %} {% set active_nav = 'apps' %} {% block title %}Apps — Heddle Workshop{% endblock %} {% block content %}

Deployed Apps

Upload a Heddle app bundle (.zip) to deploy workers and pipelines.

Deploy App
Deploying app bundle…
{% if error %}

Deployment error: {{ error }}

{% endif %} {% if apps %}
{% for app in apps %} {% endfor %}
Name Version Description Workers Pipelines Actions
{{ app.name }} {{ app.version }} {{ app.description }} {{ app.entry_configs.workers | length }} {{ app.entry_configs.pipelines | length }}
{% else %}

No apps deployed yet. Upload a .zip bundle to get started.

{% endif %} {% endblock %}