{% extends "setupwizard/_base.html" %} {% from "macros/box.html" import m_box %} {% set cmd = app.name %} {% block content %}

Success!

Configuration file sucessfully written.

{%- call m_box(title="Location") %}
{{ config_file }}
{{ logging_file }}
{%- endcall %}

For the final steps you will have to run the following commands from command line:

  1. Initialize the database:
    {{ cmd }} initdb
  2. Create the admin account. The email is used for login:
    {{ cmd }} createadmin -n admin [-f FIRST_NAME] email password
  3. restart the server

{% endblock %}