From c540dae4e7db67031ee5f67feb076927999e364d Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Sat, 10 Jan 2026 11:52:59 +0200 Subject: [PATCH] Set up conductor.json with yarn install and web server configuration (#9676) Add conductor setup and run scripts that install dependencies and start the dev server with a dynamically allocated port. Co-authored-by: Claude Haiku 4.5 --- conductor.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 conductor.json diff --git a/conductor.json b/conductor.json new file mode 100644 index 0000000000..ef5c740b55 --- /dev/null +++ b/conductor.json @@ -0,0 +1,6 @@ +{ + "scripts": { + "setup": "yarn install", + "run": "yarn web --port $CONDUCTOR_PORT" + } +} \ No newline at end of file