
- Setup project structure and dependencies - Create SQLite database with SQLAlchemy models - Initialize Alembic for database migrations - Implement JWT-based authentication utilities - Create API endpoints for signup, login, and logout - Add health check endpoint - Implement authentication middleware for protected routes - Update README with setup and usage instructions - Add linting with Ruff
10 lines
199 B
Plaintext
10 lines
199 B
Plaintext
fastapi>=0.100.0
|
|
uvicorn>=0.23.0
|
|
sqlalchemy>=2.0.0
|
|
alembic>=1.11.0
|
|
python-jose[cryptography]>=3.3.0
|
|
passlib[bcrypt]>=1.7.4
|
|
pydantic>=2.0.0
|
|
pydantic-settings>=2.0.0
|
|
python-multipart>=0.0.6
|
|
ruff>=0.1.0 |