Skip to content

Commit fea609d

Browse files
committed
docs: tag CLI checklist code fences as bash + use default app port 3000
CodeRabbit MD040 — fenced blocks need a language identifier. Tagged the four command snippets as `bash`. Dropped the `--port 3001` override from §5 / §6 in favour of the script's default port 3000; the explicit flag was a holdover from issue #27's wording with no actual reason to deviate from the default.
1 parent a51109d commit fea609d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tests/cli-export-qa-checklist.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Mark each row pass/fail and attach short notes for any unexpected output.
2424

2525
## 2. CLI: default zip export
2626

27-
```
27+
```bash
2828
python scripts/export.py --out ./export
2929
```
3030

@@ -37,7 +37,7 @@ python scripts/export.py --out ./export
3737

3838
## 3. CLI: no-zip export
3939

40-
```
40+
```bash
4141
python scripts/export.py --out ./export --no-zip
4242
```
4343

@@ -49,7 +49,7 @@ python scripts/export.py --out ./export --no-zip
4949

5050
## 4. CLI: incremental (`--since last`)
5151

52-
```
52+
```bash
5353
python scripts/export.py --out ./export --no-zip --since last
5454
```
5555

@@ -63,18 +63,18 @@ python scripts/export.py --out ./export --no-zip --since last
6363

6464
## 5. App server launch
6565

66-
```
67-
python app.py --port 3001
66+
```bash
67+
python app.py
6868
```
6969

7070
- [ ] Process stays running for at least 30 s without crash
71-
- [ ] `curl -sI http://127.0.0.1:3001/` returns `HTTP/1.0 200 OK` (or 200 over 1.1)
71+
- [ ] `curl -sI http://127.0.0.1:3000/` returns `HTTP/1.0 200 OK` (or 200 over 1.1)
7272
- [ ] Home page lists at least one workspace card (assuming real Cursor data)
7373
- [ ] No `Exception` / `Traceback` in server log
7474

7575
## 6. Browse flow (web UI)
7676

77-
Open `http://127.0.0.1:3001/` in a browser.
77+
Open `http://127.0.0.1:3000/` in a browser.
7878

7979
- [ ] Workspace list renders without console errors
8080
- [ ] Clicking a workspace card opens the workspace view

0 commit comments

Comments
 (0)