clean up
build-and-push / build (push) Failing after 40s

This commit is contained in:
2026-08-01 00:51:08 +05:00
parent d406e56856
commit cd99049a92
9 changed files with 43 additions and 87 deletions
+16
View File
@@ -21,6 +21,22 @@ frontend collects the key on a login screen and the backend validates it.
## Quick start
### With Docker (dev)
Runs both services with hot-reload — the frontend on Vite, the backend on
`uvicorn --reload`, each with its source volume-mounted from the host.
```bash
cp backend/.env.example backend/.env # edit DB credentials + API_KEY
docker compose up --build # frontend :5173, backend :8000
```
The frontend proxies `/api/*` to the `backend` service over the compose
network, so log in at http://localhost:5173 with the `API_KEY` from
`backend/.env`.
### Manual
**Backend** (see [`backend/README.md`](backend/README.md) for details):
```bash