add app execution in main, so users dont have to rely on fastapi being in path

uebung_entities
michael 2025-01-17 14:37:41 +01:00
parent 3b8c48f5cf
commit 7bc1345d60
1 changed files with 3 additions and 0 deletions

View File

@ -53,3 +53,6 @@ async def ui(request: Request):
{"id": 2, "name": "Product 2", "price": 20.0}
]
return templates.TemplateResponse("products.html", {"request": request, "products": products})
if __name__ == "__main__":
uvicorn.run(app, host="127.0.0.1", port=8000)