๐ Smithery is now a part of Arcade.dev! Read more in our announcement here
FastAPI dev/prod runbook (Uvicorn reload, Gunicorn)
uvicorn app.main:app --reload
python -m uvicorn ...
PYTHONPATH=.
WATCHFILES_FORCE_POLLING=true
gunicorn app.main:app -k uvicorn.workers.UvicornWorker -w <n> --bind :8000
Anti-patterns:
--reload --workers > 1
watch: true
References: references/.
references/