semantics

This commit is contained in:
geoffsee
2025-05-23 16:14:48 -04:00
parent a9c4f25ff3
commit 7348ab1ccb
2 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ Fork of [geoff.seemueller.io](https://geoff.seemueller.io).
2. `bun run build` 2. `bun run build`
3. Configure .dev.vars 3. Configure .dev.vars
4. Setup KV_STORAGE bindings for local development. 4. Setup KV_STORAGE bindings for local development.
5. In isolated shells, run `bun run worker:dev` and `bun run vite:dev` 5. In isolated shells, run `bun run client:dev` and `bun run server:dev`
### Further Documentation ### Further Documentation

View File

@@ -3,9 +3,9 @@
"scripts": { "scripts": {
"clean": "rm -rf node_modules && rm -rf .wrangler && rm -rf dist", "clean": "rm -rf node_modules && rm -rf .wrangler && rm -rf dist",
"build": "pnpm client:build && pnpm worker:build", "build": "pnpm client:build && pnpm worker:build",
"vite:dev": "pnpm vite dev --host 0.0.0.0", "client:dev": "pnpm vite dev --host 0.0.0.0",
"worker:dev": "pnpm run build && pnpm wrangler dev", "server:dev": "pnpm run build && pnpm wrangler dev",
"client": "pnpm vite:dev", "client": "pnpm client:dev",
"client:build": "vite build", "client:build": "vite build",
"worker:build": "WRANGLER_LOG=info wrangler build", "worker:build": "WRANGLER_LOG=info wrangler build",
"agents:dev": "(cd ../web-agent-rs; cargo run)", "agents:dev": "(cd ../web-agent-rs; cargo run)",