Add docker compose for dev

This commit is contained in:
Ruslan Bakiev
2026-02-18 14:01:21 +07:00
parent efa0b79c4c
commit e5eb5839b1
2 changed files with 51 additions and 0 deletions

View File

@@ -18,3 +18,17 @@ cd Frontend
npm install
npm run dev
```
## Run (Docker Compose)
Prereqs: Docker Desktop (compose v2).
```bash
docker compose up --build
```
Open: `http://localhost:3000/`
Notes:
- DB is SQLite persisted in a named volume (`clientsflow_data`).
- For LangGraph agent: set `OPENAI_API_KEY` (otherwise it falls back to the rule-based agent).