Hi everyone,
I have an api server written in FastAPI framework(python) and I would like to
know how to deploy it with IIS on Windows server 2019.
In order to run it locally, the application uses uvicorn(ASGI server).
So basically what I want to know is how to deploy ASGI server on top of IIS,
because right now I'm just running the app via CMD, which is definitely not a good idea at all.
Every time the server for some is going down and then up, I have to restart the app and this is
something that I would like to be automatically.
I looked up for some tutorials on the Internet but I couldn't find one for FastAPI.
Does someone know how to do so?
Many thanks, Shay.