FastApi + NGINX
Mar 26, 2021 · 1 min read · App main.py Let’s write simple application which returns “hello world” :) from fastapi import FastAPI app = FastAPI() @app.get(“/”) async def hello(): return {“msg”: “hello world”} Supervisor config Now we need some tool for daemonize our API. Sup...
Join discussion
