Skip to content

Commit 2a1260d

Browse files
committed
docs(rebrand): update home-dir references to ~/.bcode (auto-migrated in v0.0.19)
1 parent 07b16f3 commit 2a1260d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.claude/rules/debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The server writes structured NDJSON spans to a local trace file — always on du
1919
tail -f ./dev/logs/server.trace.ndjson
2020

2121
# In production/CLI mode:
22-
tail -f ~/.t3/userdata/logs/server.trace.ndjson
22+
tail -f ~/.bcode/userdata/logs/server.trace.ndjson
2323
```
2424

2525
Read `@docs/observability.md` for the full set of jq queries. Key ones:

.docs/scripts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
- `bun run dev` — Starts contracts, server, and web in `turbo watch` mode.
44
- `bun run dev:server` — Starts just the WebSocket server (uses Bun TypeScript execution).
55
- `bun run dev:web` — Starts just the Vite dev server for the web app.
6-
- Dev commands default the base dir to `~/.t3` (overridable via `BCODE_HOME` or `--base-dir`) and place dev state under `$BCODE_HOME/dev` to keep it isolated from desktop/prod state.
6+
- Dev commands default the base dir to `~/.bcode` (overridable via `BCODE_HOME` or `--base-dir`) and place dev state under `$BCODE_HOME/dev` to keep it isolated from desktop/prod state. Existing `~/.t3/` installs are auto-migrated on first launch of v0.0.19.
77
- Override server CLI-equivalent flags from root dev commands with `--`, for example:
8-
`bun run dev -- --base-dir ~/.t3-2`
8+
`bun run dev -- --base-dir ~/.bcode-2`
99
- `bun run start` — Runs the production server (serves built web app as static files).
1010
- `bun run build` — Builds contracts, web app, and server through Turbo.
1111
- `bun run typecheck` — Strict TypeScript checks for all packages.

docs/observability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you want a log message to show up in the trace file, emit it inside an active
2222

2323
### Traces
2424

25-
Completed spans are written as NDJSON records to `serverTracePath` (by default, `~/.t3/userdata/logs/server.trace.ndjson` — the home directory flips to `~/.bcode` in a future release alongside an auto-migration).
25+
Completed spans are written as NDJSON records to `serverTracePath` (by default, `~/.bcode/userdata/logs/server.trace.ndjson`; existing `~/.t3/userdata/…` contents are auto-migrated on first launch of v0.0.19).
2626

2727
Important fields in each record:
2828

0 commit comments

Comments
 (0)