Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,25 @@ When the GUI closes, the container is stopped automatically.
```bash
make docker-stop
```

#### 🐳 Running with Docker Compose (Hot Reload Dev Setup)
If you want live-reloading of the backend while you develop:

Start backend (with hot reload) + launch GUI
```bash
make dev-full
```

This uses Docker Compose to start the backend with `--reload`, waits a few seconds, then launches the GUI app.
The backend remains running after the GUI closes.

Make sure you have a `.env` file in your project root. You can copy it from `.env.example` if needed.

Stop the Docker Compose backend
```bash
make dev-full-down
```
---
#### 🧪 Running Tests
```bash
make test
Expand Down