Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 345 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 345 Bytes

fastapi_heroku

Illustrates how to deploy a barebones FastAPI via Heroku.

To run locally

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Then, run via uvicorn:

uvicorn slack:app --reload

To deploy to heroku

heroku login  
heroku create
git push heroku main
heroku open