/fastapi-tutorial

This is a repo to accompany a FastAPI tutorial series on Youtube

FastAPI Tutorial

Setup

Set up your virtual environment

python -m venv env
.\env\Scripts\activate
pip install -r requirements.txt

If you're running Linux or MacOS you'll instead run

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

Running the app

uvicorn main:app --reload