Select a worktree from the sidebar to connect
+diff --git a/dev-dashboard/.gitignore b/dev-dashboard/.gitignore new file mode 100644 index 0000000000..0956828758 --- /dev/null +++ b/dev-dashboard/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +public/dist/ +bun.lock diff --git a/dev-dashboard/package.json b/dev-dashboard/package.json new file mode 100644 index 0000000000..2617ccda08 --- /dev/null +++ b/dev-dashboard/package.json @@ -0,0 +1,17 @@ +{ + "name": "windmill-dev-dashboard", + "private": true, + "type": "module", + "scripts": { + "build": "bun build src/client/app.ts --outdir public/dist --minify", + "dev": "bun run build && bun --watch src/server.ts", + "start": "bun src/server.ts" + }, + "devDependencies": { + "@xterm/xterm": "^5.5.0", + "@xterm/addon-fit": "^0.10.0", + "@xterm/addon-web-links": "^0.11.0", + "@types/bun": "latest", + "typescript": "^5.0.0" + } +} diff --git a/dev-dashboard/public/index.html b/dev-dashboard/public/index.html new file mode 100644 index 0000000000..373b431233 --- /dev/null +++ b/dev-dashboard/public/index.html @@ -0,0 +1,63 @@ + + +
+ + +Select a worktree from the sidebar to connect
+