API with Authentication using FastAPI
FastAPI: (https://fastapi.tiangolo.com/)
SQLAlchemy: (https://www.sqlalchemy.org/)
pydantic: (https://pydantic-docs.helpmanual.io/)
pip install -r requirements.txt
cp .env-example .env
# generate secret_key
openssl rand -hex 32
uvicorn app.main:app --reload