
uvicorn
List of commands for uvicorn:
-
uvicorn:tldr:2b03f uvicorn: Run Python web app.$ uvicorn ${import-path:app_object}try on your machineexplain this command
-
uvicorn:tldr:4c492 uvicorn: Listen on port 8080 on localhost.$ uvicorn --host ${localhost} --port ${8080} ${import-path:app_object}try on your machineexplain this command
-
uvicorn:tldr:86f14 uvicorn: Turn on live reload.$ uvicorn --reload ${import-path:app_object}try on your machineexplain this command
-
uvicorn:tldr:ca610 uvicorn: Use 4 worker processes for handling requests.$ uvicorn --workers ${4} ${import-path:app_object}try on your machineexplain this command
-
uvicorn:tldr:ce028 uvicorn: Run app over HTTPS.$ uvicorn --ssl-certfile ${cert-pem} --ssl-keyfile ${key-pem} ${import-path:app_object}try on your machineexplain this command