Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 431 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 431 Bytes

FastAPI Boilerplate

Steps to install & run this app:

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