- Clone the repository.
- Open the repository:
cd fastapi-setup
- Install pipenv to create a venv for the project:
pip install pipenv
- Check if pipenv was correctly installed using
pipenv -h
- Activate the new venv using
pipenv shell
. - Install requirements from the pipfile using
pipenv sync
- Start the server using
uvicorn main:app --reload