auto reload

This commit is contained in:
Adam Cohen Hillel 2025-04-09 13:48:46 +01:00
parent 67c7eded8d
commit 0bab486e64
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ async def health_check():
if __name__ == "__main__":
logger.info("Starting website server")
uvicorn.run(app, host="0.0.0.0", port=8080)
uvicorn.run(app, host="0.0.0.0", port=8080, reload=True)
'''