Initial updates with FE

This commit is contained in:
2026-04-10 21:41:26 -05:00
parent 562a8525d0
commit bb8af62f2d
9 changed files with 119 additions and 11 deletions

View File

@@ -25,7 +25,7 @@ Skeleton Django backend for WaterTrek, using `uv` for package management and Doc
3. Visit the health endpoint:
- `http://localhost:8000/booking/health/`
- `http://localhost:8003/booking/health/`
## Run locally with uv
@@ -42,5 +42,5 @@ uv run python manage.py runserver
The `web` container runs Gunicorn:
```bash
uv run gunicorn WaterTrek.wsgi:application --bind 0.0.0.0:8000 --workers 3
uv run gunicorn WaterTrek.wsgi:application --bind 0.0.0.0:8003 --workers 3
```