- 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
27 lines
365 B
Markdown
27 lines
365 B
Markdown
# Notytex v2 Backend
|
|
|
|
Backend API FastAPI pour le système de gestion scolaire Notytex.
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
uv sync
|
|
```
|
|
|
|
## Démarrage
|
|
|
|
```bash
|
|
uv run python -m uvicorn api.main:app --reload --port 8000
|
|
```
|
|
|
|
## Tests
|
|
|
|
```bash
|
|
uv run pytest
|
|
```
|
|
|
|
## Documentation API
|
|
|
|
- Swagger UI: http://localhost:8000/api/v2/docs
|
|
- ReDoc: http://localhost:8000/api/v2/redoc
|