
- Set up project structure with FastAPI - Configure SQLAlchemy with SQLite - Implement user and item models - Set up Alembic for database migrations - Create CRUD operations for models - Implement API endpoints for users and items - Add authentication functionality - Add health check endpoint - Configure Ruff for linting - Update README with comprehensive documentation
15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
fastapi>=0.100.0
|
|
uvicorn>=0.22.0
|
|
pydantic>=2.0.0
|
|
pydantic-settings>=2.0.0
|
|
sqlalchemy>=2.0.0
|
|
alembic>=1.11.0
|
|
python-multipart>=0.0.6
|
|
python-dotenv>=1.0.0
|
|
email-validator>=2.0.0
|
|
passlib>=1.7.4
|
|
bcrypt>=4.0.1
|
|
python-jose>=3.3.0
|
|
ruff>=0.0.275
|
|
httpx>=0.24.1
|
|
pytest>=7.3.1 |