fix: Expose app by default

This commit is contained in:
Marty Oehme 2025-06-12 21:07:23 +02:00
parent 2514ad1296
commit 836e7b565b
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -122,7 +122,7 @@ async def fetch_update(debug_print: bool = True):
def start() -> None:
from uvicorn import run
run("prophet.app:app", reload=True)
run("prophet.app:app", reload=True, host="0.0.0.0")
if __name__ == "__main__":