11 lines
359 B
Python
11 lines
359 B
Python
|
|
"""Control-Core-Start (Entwicklung): python -m hms_control_server"""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import uvicorn
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
# Phase 0: Development-Start. Produktion startet über den Launcher,
|
||
|
|
# bindet 127.0.0.1 und wählt freie Ports (§3.1, §9.2).
|
||
|
|
uvicorn.run("hms_control_server.app:app", host="127.0.0.1", port=8000)
|