diff --git a/Makefile b/Makefile index f6876a55c3..a1947d009a 100644 --- a/Makefile +++ b/Makefile @@ -177,7 +177,7 @@ dev-server: node_modules/.installed build-main ## Start server mode with hot rel @bun x concurrently -k \ "bun x concurrently \"$(TSGO) -w -p tsconfig.main.json\" \"bun x tsc-alias -w -p tsconfig.main.json\"" \ 'bun x esbuild src/cli/api.ts $(ESBUILD_CLI_FLAGS) --watch' \ - "bun x nodemon --watch dist/cli/index.js --watch dist/cli/server.js --delay 500ms --exec 'NODE_ENV=development node dist/cli/index.js server --host $(or $(BACKEND_HOST),127.0.0.1) --port $(or $(BACKEND_PORT),3000)'" \ + "bun x nodemon --watch dist/cli/index.js --watch dist/cli/server.js --delay 3000ms --exec 'NODE_ENV=development node dist/cli/index.js server --host $(or $(BACKEND_HOST),127.0.0.1) --port $(or $(BACKEND_PORT),3000)'" \ "MUX_VITE_HOST=$(or $(VITE_HOST),127.0.0.1) MUX_VITE_PORT=$(or $(VITE_PORT),5173) MUX_VITE_ALLOWED_HOSTS=$(VITE_ALLOWED_HOSTS) MUX_BACKEND_PORT=$(or $(BACKEND_PORT),3000) vite" endif diff --git a/docs/img/agent-status.webp b/docs/img/agent-status.webp index 5e3dcd720f..c10663330a 100644 Binary files a/docs/img/agent-status.webp and b/docs/img/agent-status.webp differ diff --git a/docs/img/code-review.webp b/docs/img/code-review.webp index bee17fbd03..0ed44aaa3f 100644 Binary files a/docs/img/code-review.webp and b/docs/img/code-review.webp differ diff --git a/docs/img/costs-tab.webp b/docs/img/costs-tab.webp index 1ba57c76f2..5994ce1625 100644 Binary files a/docs/img/costs-tab.webp and b/docs/img/costs-tab.webp differ diff --git a/docs/img/git-status.webp b/docs/img/git-status.webp index 36a53cebf4..6cb4a257ed 100644 Binary files a/docs/img/git-status.webp and b/docs/img/git-status.webp differ diff --git a/docs/img/opportunistic-compaction.webp b/docs/img/opportunistic-compaction.webp index ed3e66a46d..00ae225a44 100644 Binary files a/docs/img/opportunistic-compaction.webp and b/docs/img/opportunistic-compaction.webp differ diff --git a/docs/img/plan-mermaid.webp b/docs/img/plan-mermaid.webp index 30994e2103..3684eacaeb 100644 Binary files a/docs/img/plan-mermaid.webp and b/docs/img/plan-mermaid.webp differ diff --git a/docs/img/product-hero.webp b/docs/img/product-hero.webp index dfda0ebebc..697afb4e4c 100644 Binary files a/docs/img/product-hero.webp and b/docs/img/product-hero.webp differ diff --git a/docs/img/project-secrets.webp b/docs/img/project-secrets.webp index 2a6ec4252a..f3fcfc6954 100644 Binary files a/docs/img/project-secrets.webp and b/docs/img/project-secrets.webp differ diff --git a/src/browser/stories/App.demo.stories.tsx b/src/browser/stories/App.demo.stories.tsx index 5f802edc21..d85b43f2e2 100644 --- a/src/browser/stories/App.demo.stories.tsx +++ b/src/browser/stories/App.demo.stories.tsx @@ -123,7 +123,7 @@ export const Comprehensive: AppStory = { [ "--- src/api/users.ts", "+++ src/api/users.ts", - "@@ -1,5 +1,15 @@", + "@@ -1,4 +1,13 @@", "+import { verifyToken } from '../auth/jwt';", " export function getUser(req, res) {", "+ try {",