Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ python curi.py doctor
python curi.py serve
```

Open <http://127.0.0.1:8787>. CURI scans `~/.codex/sessions` every three seconds. Override paths when needed:
Open <http://127.0.0.1:8792>. CURI scans `~/.codex/sessions` every three seconds. Override paths when needed:

```bash
python curi.py serve \
Expand Down
2 changes: 1 addition & 1 deletion curi.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ def common(s: argparse.ArgumentParser) -> None:
s.add_argument("--archive-dir", default=os.getenv("CURI_ARCHIVE_DIR", ""))
s.add_argument("--db", default=os.getenv("CURI_DB", str(Path.home() / ".curi" / "curi.sqlite3")))
s = sub.add_parser("serve", help="scan and serve the local dashboard")
common(s); s.add_argument("--port", type=int, default=8787); s.add_argument("--interval", type=int, default=3)
common(s); s.add_argument("--port", type=int, default=8792); s.add_argument("--interval", type=int, default=3)
s = sub.add_parser("scan", help="scan local JSONL once and print a summary")
common(s); s.add_argument("--days", type=int, default=0)
s = sub.add_parser("doctor", help="check local paths without reading credentials")
Expand Down
Loading