FASTAPI

FastAPI boilerplate

Setup

  1. Create a virtual environment.
   python3 -m venv .venv
  1. Activate virtual environment.
    source /path/to/venv/bin/activate`
  1. Install project dependencies pip install -r requirements.txt

  2. Create a .env file by copying the .env.sample file cp .env.sample .env

  3. Start server.

python main.py