{% extends "base.html" %} {% block title %}{{ brief.title }} · Install blueprint{% endblock %} {% block meta_description %}Review the generated Postiz install blueprint for {{ brief.title }}, including prerequisite readiness, env placeholders, and bootstrap commands.{% endblock %} {% block content %}
Install blueprint

{{ brief.title }}

{{ brief.next_milestone }}

{{ brief.status_label }} {{ brief.public_url }} {{ brief.node_version }} · {{ brief.package_manager }}
Readiness
{{ brief.readiness_percent }}% service readiness

{{ brief.ready_services_count }} of 3 prerequisite services are marked ready for the initial development boot.

Prerequisites

Service checklist

{% for item in blueprint.prerequisites %}

{{ item.title }}

{{ item.detail }}

{% endfor %}
{% if brief.notes %}
Notes

{{ brief.notes }}

{% endif %}
Environment

Suggested .env starting point

{% for line in blueprint.env_lines %}{{ line }}{% if not forloop.last %}
{% endif %}{% endfor %}
Bootstrap

Suggested command path

Back to briefs
{% for command in blueprint.command_plan %}
0{{ forloop.counter }} {{ command }}
{% endfor %}
{% endblock %}