Run web server with one command.
$ pip install runweb
If you need auto reload, install with reload
extra.
$ pip install "runweb[reload]"
Install with waitress
extra.
$ pip install "runweb[waitress]"
Then run command.
$ runweb -a app:wsgi
If you need a multi-process waitress service, just run the following command:
$ runweb -a app:wsgi -w 4
Install with uvicorn
extra.
$ pip install "runweb[uvicorn]"
Then run command.
$ runweb -a app:asgi
If you need a multi-process uvicorn service, just run the following command:
$ runweb -a app:asgi -w 4