Skip to content

Latest commit

 

History

History
59 lines (52 loc) · 1.53 KB

README.md

File metadata and controls

59 lines (52 loc) · 1.53 KB
fastapi-jwt

JWT implementation with FastAPI, MongoDB

Awesome

Table of Contents

Project Structure

├── app
│   ├── __init__.py
│   ├── main.py
│   ├── core
│       ├── __init__.py
│       ├── config.py
│       └── ...
│   ├── db
│       ├── __init__.py
│       ├── database.py
│       └── ...
│   ├── models
│       ├── __init__.py
│       ├── user.py
│       └── ...
│   ├── serializers
│       ├── __init__.py
│       ├── userSerializers.py
│       └── ...
│   └── endpoints
│       ├── __init__.py
│       ├── user.py
│       └── ...
├── docker-compose.yml
├── Dockerfile
├── .env
├── .env.example
├── .gitignore
├── README.md
└── requirements.txt

Up and Run

git clone https://github.com/shahnawaz-pabon/fastapi-mongodb-with-jwt.git
cd fastapi-mongodb-with-jwt
docker-compose up --build

Behold the swagger of our application, gracefully accessible at http://0.0.0.0:8081/docs/.