From f19dd4ded95f498ce81d7fd748495397ce27d6c0 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sun, 13 Sep 2026 11:37:24 +0000 Subject: [PATCH] Add Cloud Agent environment config for Server component build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: køkkeligk --- .cursor/environment.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .cursor/environment.json diff --git a/.cursor/environment.json b/.cursor/environment.json new file mode 100644 index 00000000..c278222e --- /dev/null +++ b/.cursor/environment.json @@ -0,0 +1,11 @@ +{ + "name": "Copilot for Xcode", + "install": "cd Server && npm install --force && npm run build", + "terminals": [ + { + "name": "Server preview", + "command": "cd Server/dist && python3 -m http.server 8099" + } + ], + "ports": [8099] +}