/fastapi_learning

Tinkering with fastapi in python to create backend apis

Primary LanguagePython

fastapi_and_sqlalchemy_learning

Tinkering with fastapi and sqlalchemy in python to create backend apis

Links

Steps to setup this locally

  • Create a virtual environment
    python3 -m venv venv
  • Activate the virtual environment
    source venv/bin/activate
  • Install all the requirements using command
pip3 install -r requirements.txt
  • To start the server you can run below command
    uvicorn main:app --reload