This commit is contained in:
MEGASOL\simon.adams
2025-08-26 13:50:28 +02:00
commit e6f055ec5b
22 changed files with 1131 additions and 0 deletions

13
main.py Normal file
View File

@@ -0,0 +1,13 @@
"""
Thin entrypoint so you can run `python main.py` from project root.
"""
import os
import uvicorn
from dotenv import load_dotenv
load_dotenv()
if __name__ == "__main__":
host = os.getenv("HOST", "127.0.0.1")
port = int(os.getenv("PORT", "8080"))
uvicorn.run("app.app:app", host=host, port=port, reload=True)