from __future__ import annotations

import os

from .app import create_app

app = create_app()
app.run(
    host=os.getenv("KIMU_HOST", "127.0.0.1"),
    port=int(os.getenv("KIMU_PORT", "19460")),
    threaded=True,
    debug=False,
)
