summaryrefslogtreecommitdiff
path: root/README.md
blob: fb44e25dc801c044ea105c5b5f9254bf36276e4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# ContextFlow

## Quick Start

### Backend

```bash
cd backend
uv run --with-requirements requirements.txt uvicorn app.main:app --host 0.0.0.0 --port 8000
```

### Frontend

```bash
cd frontend
npm install   # first time only
npx vite --port 5174
```

### Nginx

The production domain `contextflow.blackhao.com` reverse-proxies to `127.0.0.1:8000`.