
- Set up FastAPI application with MongoDB Motor driver - Implemented user registration, login, and logout with HTTP-only cookies - Added JWT token authentication and password hashing - Created user management endpoints for username updates and password changes - Structured application with proper separation of concerns (models, schemas, services, routes) - Added CORS configuration and health endpoints - Documented API endpoints and environment variables in README
9 lines
192 B
Plaintext
9 lines
192 B
Plaintext
fastapi==0.104.1
|
|
uvicorn==0.24.0
|
|
motor==3.3.2
|
|
python-jose[cryptography]==3.3.0
|
|
passlib[bcrypt]==1.7.4
|
|
python-multipart==0.0.6
|
|
email-validator==2.1.0
|
|
pydantic[email]==2.5.0
|
|
python-dotenv==1.0.0 |