You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move SQLite data to data/ directory, update README quick start
Default DB path is now data/codehive.db. Auto-creates data/ directory.
Added data/ to .gitignore. README rewritten with SQLite-first quick
start, optional PostgreSQL section, and terminal-only mode.
cd backend && uv sync --dev && uv run codehive serve
78
+
```
79
+
80
+
### Terminal-only mode (no web server needed)
81
+
82
+
```bash
83
+
cd backend
84
+
uv run codehive code # start agent in current directory
85
+
uv run codehive code ~/myapp # start agent in a specific directory
86
+
```
87
+
88
+
This launches a Textual TUI with streaming, markdown rendering, and tool approval prompts. If the backend is running, sessions are shared with the web UI. If not, it runs standalone with a local engine.
0 commit comments