{% extends 'dashboard.html' %} {% block page %}

Shared Environments

Manage reusable environment configurations that can be injected into your functions

{% if environments and environments|length > 0 %}
{% for env in environments %}

{{ env.name }}

{% if env.description %}

{{ env.description }}

{% endif %}
{{ env.environment | tojson(indent=2) }}
Created: {{ env.created_at.strftime('%Y-%m-%d %H:%M') if env.created_at else 'Unknown' }} {% if env.updated_at and env.updated_at != env.created_at %} | Updated: {{ env.updated_at.strftime('%Y-%m-%d %H:%M') }} {% endif %}
{% endfor %}
{% else %}

No shared environments

Get started by creating a new shared environment

{% endif %}
{% endblock %}