Add client recipe and set dev secret for local development
This commit is contained in:
parent
aa50c550b7
commit
5abdf31480
1 changed files with 5 additions and 1 deletions
6
justfile
6
justfile
|
|
@ -5,7 +5,11 @@ seed secret="dev" name="":
|
||||||
bun src/seed.ts "{{secret}}" "{{name}}"
|
bun src/seed.ts "{{secret}}" "{{name}}"
|
||||||
|
|
||||||
dev:
|
dev:
|
||||||
bun run dev
|
CLAUDE_REMOTE_SECRET=dev bun run dev
|
||||||
|
|
||||||
|
# Run CLI client (connects to local dev server)
|
||||||
|
client *args:
|
||||||
|
CLAUDE_REMOTE_SECRET=dev CLAUDE_REMOTE_SERVER=ws://localhost:7200/ws bun src/cli.ts {{args}}
|
||||||
|
|
||||||
start:
|
start:
|
||||||
bun run start
|
bun run start
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue