
- Created requirements.txt with necessary dependencies - Set up FastAPI application structure with main.py - Added health endpoint - Configured SQLAlchemy with SQLite database - Initialized Alembic for database migrations - Created Todo model and API endpoints - Updated README with setup and usage instructions - Linted code with Ruff
7 lines
115 B
Plaintext
7 lines
115 B
Plaintext
fastapi>=0.104.0
|
|
uvicorn>=0.23.2
|
|
sqlalchemy>=2.0.0
|
|
alembic>=1.12.0
|
|
pydantic>=2.4.0
|
|
python-dotenv>=1.0.0
|
|
ruff>=0.1.3 |