forked from B-M-Capital-Research/honeclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.sh
More file actions
executable file
·30 lines (20 loc) · 773 Bytes
/
Copy pathlaunch.sh
File metadata and controls
executable file
·30 lines (20 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env bash
set -euo pipefail
cat >&2 <<'EOF'
launch.sh has been retired.
Use the CLI startup path instead:
# Source checkout: build local CLI/runtime binaries, then start from target/debug
cargo run -p hone-cli -- start --build
# Installed users, including Homebrew or the release installer
hone-cli start
# Configure before starting
hone-cli onboard
hone-cli configure --section agent --section channels --section providers
For Web UI development, run the frontend separately after the backend is up:
bun run dev:web
bun run dev:web:public
For desktop development, prepare sidecars and use Tauri directly:
bun run tauri:prep:dev -- --skip-dev-command
bunx tauri dev --config bins/hone-desktop/tauri.generated.conf.json
EOF
exit 64