Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 577 Bytes

readme.md

File metadata and controls

20 lines (18 loc) · 577 Bytes

Social Media backend

build using python, fastapi, postgres database, jwt authetication

getting started

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