
- Created user model with SQLAlchemy ORM - Implemented authentication with JWT tokens (access and refresh tokens) - Added password hashing with bcrypt - Created API endpoints for registration, login, and user management - Set up Alembic for database migrations - Added health check endpoint - Created role-based access control (standard users and superusers) - Added comprehensive documentation
19 lines
309 B
Plaintext
19 lines
309 B
Plaintext
# FastAPI and ASGI server
|
|
fastapi>=0.104.0
|
|
uvicorn>=0.23.2
|
|
pydantic>=2.4.2
|
|
pydantic-settings>=2.0.3
|
|
email-validator>=2.1.0
|
|
|
|
# Database
|
|
sqlalchemy>=2.0.23
|
|
alembic>=1.12.1
|
|
|
|
# Authentication
|
|
python-jose[cryptography]>=3.3.0
|
|
passlib[bcrypt]>=1.7.4
|
|
python-multipart>=0.0.6
|
|
|
|
# Utils
|
|
python-dotenv>=1.0.0
|
|
ruff>=0.1.3 |