conductor-oss-native-linux-x64 0.20.2 → 0.20.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -5
- package/bin/conductor +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,10 +47,13 @@ Conductor adds:
|
|
|
47
47
|
npx conductor-oss@latest
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
This starts the Rust backend and Next.js dashboard, then opens the browser.
|
|
50
|
+
This starts the Rust backend and Next.js dashboard, then opens the browser.
|
|
51
51
|
|
|
52
|
-
-
|
|
53
|
-
- Backend: `http://127.0.0.1:4749`
|
|
52
|
+
- Default dashboard port: `http://127.0.0.1:4747` (overridable)
|
|
53
|
+
- Backend port: `http://127.0.0.1:4749` in the launcher flow (or whatever you configure for CLI)
|
|
54
|
+
- Rust CLI direct `conductor start` defaults to `http://127.0.0.1:4747` unless `--port` is set.
|
|
55
|
+
|
|
56
|
+
For source checkouts, `bun run dev:full` launches the same stack with dashboard defaulting to `3000` in this repo.
|
|
54
57
|
|
|
55
58
|
### Initialize an existing repo
|
|
56
59
|
|
|
@@ -65,7 +68,7 @@ This scaffolds `conductor.yaml`, `CONDUCTOR.md`, and `.conductor/conductor.db` i
|
|
|
65
68
|
|
|
66
69
|
```bash
|
|
67
70
|
npm install -g conductor-oss
|
|
68
|
-
co
|
|
71
|
+
co start
|
|
69
72
|
```
|
|
70
73
|
|
|
71
74
|
The launcher registers three aliases: `conductor-oss`, `conductor`, and `co`.
|
|
@@ -253,14 +256,23 @@ bun install
|
|
|
253
256
|
```bash
|
|
254
257
|
bun run dev:full # Dashboard (port 3000) + Rust backend (port 4749)
|
|
255
258
|
bun run dev # Dashboard only
|
|
256
|
-
bun run dev:backend # Backend only (or: cargo run --bin conductor
|
|
259
|
+
bun run dev:backend # Backend only (or: `cargo run --bin conductor -- --workspace . start --port 4749`)
|
|
257
260
|
bun run build # Full production build
|
|
258
261
|
bun run typecheck # TypeScript type checking
|
|
259
262
|
|
|
263
|
+
export CONDUCTOR_DEV_DASHBOARD_PORT=3000 # optional
|
|
264
|
+
export CONDUCTOR_DEV_BACKEND_PORT=4749 # optional
|
|
265
|
+
|
|
260
266
|
cargo test --workspace # Rust tests
|
|
261
267
|
cargo clippy --workspace -- -D warnings # Rust linting
|
|
262
268
|
```
|
|
263
269
|
|
|
270
|
+
```bash
|
|
271
|
+
# If you want only the frontend on port 3000 and backend separately:
|
|
272
|
+
bun run --cwd packages/web dev
|
|
273
|
+
cargo run --bin conductor -- --workspace . start --port 4749
|
|
274
|
+
```
|
|
275
|
+
|
|
264
276
|
### Dev Ports
|
|
265
277
|
|
|
266
278
|
| Service | Port |
|
package/bin/conductor
CHANGED
|
Binary file
|