{% extends "base.html" %} {% block title %}Setup Wizard - DocuElevate{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

DocuElevate Setup Wizard

Welcome! Let's configure your system in just a few steps.

Step {{ current_step }} of {{ max_step }} {{ progress_percent }}% Complete
{% for step_num in range(1, max_step + 1) %}
{% if step_num < current_step %} {% else %} {{ step_num }} {% endif %}
{% if step_num == 1 %}Infrastructure{% elif step_num == 2 %}Security{% elif step_num == 3 %}AI Services{% endif %}
{% endfor %}

{{ step_category }}

Configure essential settings for this category

{% if request.query_params.get('error') == 'save_failed' %} {% endif %}
{% for setting in settings %}

{{ setting.description }}

{% if setting.key == 'session_secret' %}
{% else %} {% if setting.options %} {% else %} {% endif %} {% endif %} {% if setting.value_source == 'db' %} DB {% elif setting.value_source == 'env' %} ENV {% elif setting.value_source == 'default' %} DEFAULT {% endif %} {% if setting.key == 'admin_password' %}

Important: Choose a strong password. This cannot be recovered if lost.

{% elif setting.sensitive %}

This value will be encrypted at rest in the database.

{% endif %}
{% endfor %}
{% if setup_skipped %} Setup was previously skipped. {% elif current_step == 1 %} Skip setup (advanced users) {% endif %}
{% if current_step > 1 %} Previous {% endif %}

All settings can be changed later in the Settings page.

Fields marked with * are required.

{% if setup_skipped %}

You previously skipped the setup wizard. Click here to re-run it.

{% endif %}
{% endblock %}