{% extends "base.html" %} {% block title %}Install briefs ยท Postiz Native Setup Studio{% endblock %} {% block meta_description %}Browse saved Postiz install briefs, compare service readiness, and reopen any setup blueprint for this VM.{% endblock %} {% block content %}
Install briefs

Saved setup plans for this hosted environment.

Every brief keeps the public URL, infrastructure readiness, and next milestone visible so you can iterate without losing context.

Create another brief
{% if briefs %}
{% for brief in briefs %}

{{ brief.title }}

{{ brief.public_url }}

{{ brief.status_label }}
{{ brief.ready_services_count }}/3 infrastructure services ready
  • Node{{ brief.node_version }}
  • Package manager{{ brief.package_manager }}
  • Email{{ brief.get_email_provider_display }}

{{ brief.next_milestone }}

Open blueprint
{% endfor %}
{% else %}

No install briefs yet

Start with one brief so the app can generate the first Postiz setup blueprint for this VM.

Create the first brief
{% endif %}
{% endblock %}