build using python, fastapi, postgres database, jwt authetication
fork the repo
clone the repository
run pip3 install -r requirements.txt
configurations for postgresql database, you may change as per your need
DATABASE_HOSTNAME=localhost
DATABASE_PORT=5432
DATABASE_PASSWORD=
DATABASE_NAME=fastapi
DATABASE_USERNAME=postgres
SECRET_KEY=
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
then you are ready
just run uvicorn app.main:app --reload
to start the development server