A backend authentication service built using FastAPI. This project demonstrates user authentication, token-based authorization, and scalable backend design.
Features
- User authentication (Login)
- JWT-based authorization
- Secure API endpoints
- Modular project structure
- FastAPI-powered high-performance APIs
git clone https://github.com/AnshuS14/fastapi-auth-service.gitpython3 -m venv venv
source venv/bin/activatepython3 -m pip install -r requirements.txtpython3 -m uvicorn app.main:app --reloadServer runs at:
http://127.0.0.1:8000
Anshu Saxena