8000 GitHub - atropass/shanyraq-app: 🚀 FastAPI + MongoBD
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

atropass/shanyraq-app

 
 

Repository files navigation

FastAPI + MongoDB

  • MongoDB as database
  • Bcrypt for password hashing
  • JWT for user token management and verification
  • Dockerfile and docker-compose files for easy deployment
  • CORS Middleware configuration

📚 Features

  1. User registration.
  2. User authentication and token creation.
  3. User verification and token validation.
  4. Encrypted password management.

🚀 Quick Start

You'll need Docker and Docker Compose to run this application.

  1. Build the project
docker-compose build
  1. Start the project
docker-compose up -d
  1. Watch logs
docker-compose logs -f app

This command will start the FastAPI server on port 8000, the MongoDB service on port 27017 and Mongo admin panel on port 8081. You can navigate to http://localhost:8000/docs in your browser to access the automatically generated API documentation.

📚 Project Structure

The main sections of the project are:

  • app/main.py: This is the entry point of the application.
  • app/config.py: This file contains the global configuration of the application.
  • app/auth: This folder contains the logic related to the authentication system.
  • app/auth/service.py: Contains the service layer logic for the authentication system.
  • app/auth/repository: Contains the logic for interacting with the MongoDB database.
  • app/auth/router: Contains the routing logic for the authentication API.
  • app/auth/adapters: Contains the JWT management logic.
  • app/auth/utils: Contains utility functions, such as password hashing.

⚙️ Local Development

poetry install
poetry shell
sh ./scripts/launch.sh

About

🚀 FastAPI + MongoBD

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 94.3%
  • Shell 2.9%
  • Dockerfile 2.8%
0