summaryrefslogtreecommitdiff
path: root/packages/vscode-ide-companion/development.md
diff options
context:
space:
mode:
authorchristine betts <[email protected]>2025-08-14 17:47:36 +0000
committerGitHub <[email protected]>2025-08-14 17:47:36 +0000
commit2416a80e9c1d12718e5cf02db8582cff4c9a5942 (patch)
tree2cf142679dbb83a3cb87738e5e54cc768d9e3608 /packages/vscode-ide-companion/development.md
parentef54f720de0ed9e94677504b21d437a79fec89fd (diff)
[ide-mode] Add docs on running the vscode companion extension locally (#6145)
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Shreya <[email protected]> Co-authored-by: Shreya Keshive <[email protected]>
Diffstat (limited to 'packages/vscode-ide-companion/development.md')
-rw-r--r--packages/vscode-ide-companion/development.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/vscode-ide-companion/development.md b/packages/vscode-ide-companion/development.md
new file mode 100644
index 00000000..0fdc93f2
--- /dev/null
+++ b/packages/vscode-ide-companion/development.md
@@ -0,0 +1,30 @@
+# Local Development
+
+## Running the Extension
+
+To run the extension locally for development:
+
+1. From the root of the repository, install dependencies:
+ ```bash
+ npm install
+ ```
+2. Open this directory (`packages/vscode-ide-companion`) in VS Code.
+3. Compile the extension:
+ ```bash
+ npm run compile
+ ```
+4. Press `F5` (fn+f5 on mac) to open a new Extension Development Host window with the extension running.
+
+To watch for changes and have the extension rebuild automatically, run:
+
+```bash
+npm run watch
+```
+
+## Running Tests
+
+To run the automated tests, run:
+
+```bash
+npm run test
+```