- Add FastAPI application with health check and item CRUD endpoints - Add Pydantic models for request/response validation - Add pytest test suite with 5 passing tests - Add project documentation and run script Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
3 lines
94 B
Bash
Executable File
3 lines
94 B
Bash
Executable File
#!/bin/bash
|
|
source .venv/bin/activate
|
|
uvicorn app.main:app --reload --host 0.0.0.0 --port 8000 |