Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 368 Bytes

File metadata and controls

20 lines (14 loc) · 368 Bytes

FastAPI Boilerplate

This Project uses Poetry Package Manager

poetry install

Run Server via uvicorn (Development)

poetry run uvicorn app:app --reload

Run Server via gunicorn (Production)

(Configure Appliction Settings on gunicorn.conf.py)
poetry run gunicorn app:app