From aad7d908b3846adfabc04659f4d108b716ce05ad Mon Sep 17 00:00:00 2001 From: Bryce Bjork Date: Sun, 8 Mar 2026 00:58:18 +0000 Subject: [PATCH] chore: add SILO workspace configuration Define a SILO workspace for local GitJazz development. - install dependencies for the root CLI and website app - start the website dev server in a dedicated workspace tab - open a browser pane that waits for localhost:3000 - include an archive cleanup script for generated artifacts Co-authored-by: Bryce Bjork --- silo.json | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 silo.json diff --git a/silo.json b/silo.json new file mode 100644 index 0000000..42739d1 --- /dev/null +++ b/silo.json @@ -0,0 +1,46 @@ +{ + "scripts": { + "setup": { + "run": "bun install && cd website && bun install", + "timeout_sec": 1200 + }, + "web": { + "run": "bun run dev", + "cwd": "website", + "await": [ + "setup" + ], + "ready": { + "port": 3000 + } + }, + "archive": { + "run": "rm -rf node_modules website/node_modules website/.next coverage" + } + }, + "panes": [ + { + "type": "terminal", + "title": "Work", + "flex": 1.3, + "tabs": [ + "codex", + "cc", + { + "script": "web" + } + ] + }, + { + "type": "browser", + "title": "Site", + "flex": 1.1, + "tabs": [ + { + "url": "http://localhost:3000", + "await": "web" + } + ] + } + ] +}