fix: Docker build issues and uvicorn command

- Add README.md to Dockerfile COPY to satisfy hatchling build requirement
- Fix uvicorn command in backend/README.md (use python -m uvicorn)
- Update uv.lock with correct Python version constraint
This commit is contained in:
2025-11-26 06:13:59 +01:00
parent 6654aa4248
commit cff2a33ed0
3 changed files with 21 additions and 170 deletions

View File

@@ -11,7 +11,7 @@ uv sync
## Démarrage
```bash
uv run uvicorn api.main:app --reload --port 8000
uv run python -m uvicorn api.main:app --reload --port 8000
```
## Tests