{% extends 'base.html' %} {% block title %}Modules — Enterprise Digital Platform{% endblock %} {% block content %}

Settings

Installed Modules

Enable or disable services to control which applications run on this instance.
{% for ms in module_statuses %} {% set app = ms.app %} {% set on = ms.enabled %} {% set alive = ms.running %}
{{ app.icon }} {% if alive %}running{% else %}stopped{% endif %}
{{ app.name }}
{{ app.description }}
{% endfor %}
ℹ️
How modules work
Disabling a module sends a stop signal to its process and prevents it from being proxied. Enabling a module starts its process in the background. Module state is preserved across page reloads and respected by ./start-dev.sh on next launch.
{% endblock %}