Welcome Fullstack Flutter with FastAPI Inventory workshop 2022

Official Page

FastAPI

Config and Setup tools

Python ENV

  • config python env python -m venv env
  • Activate env .\env\Scripts\activate

How to run server

uvicorn main:app --reload

Libraries

  • fastapi pip install fastapi
  • uvicorn pip install "uvicorn[standard]"
  • black pip install black
  • sqlalchemy pip install sqlalchemy
  • python-jose pip install python-jose
  • decouple pip install python-decouple
  • psycopg2 pip install psycopg2
  • python-multipart pip install python-multipart

Black formatter

black doc

Sqlalchemy

CORS

Oauth2 Ref

  • python-jose pip install python-jose
  • passlib pip install passlib
  • bcrypt pip install bcrypt

Generate key by openssl

  • cli openssl rand -hex 32

Ref. Document