summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorOlcan <[email protected]>2025-04-25 10:58:23 -0700
committerGitHub <[email protected]>2025-04-25 10:58:23 -0700
commit320f54e2057da5ae92ee47d9d53d1c77a4badc19 (patch)
tree9d2239d747828dd191ef4ef682c08853319d9cf5 /.vscode
parenteea524f6bb8becf851e44a57b397217b0a147be0 (diff)
instant (dev) sandbox (#171)
* instant (dev) sandbox * leave Dockerfile as is to pass deploy test * fix comma * fix prod build * do not use "images exists" which docker does not support * separate dev-mode flag * Merge remote-tracking branch 'origin/main' into instant_sandbox
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index d172567f..cc8b3ef6 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -11,7 +11,10 @@
"skipFiles": ["<node_internals>/**"],
"type": "node",
// fix source mapping when debugging in sandbox
- "remoteRoot": "/usr/local/share/npm-global/lib/node_modules/@gemini-code",
+ // we assume debugging is done on gemini-code project itself (see CLI_PATH setup in start_sandbox.sh)
+ // there seems to be no way to map two distinct remoteRoots to same localRoot under same configuration
+ // "remoteRoot": "/usr/local/share/npm-global/lib/node_modules/@gemini-code",
+ "remoteRoot": "/sandbox/gemini-code/packages",
"localRoot": "${workspaceFolder}/packages"
},
{