summaryrefslogtreecommitdiff
path: root/extension/DEV_README.md
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-02 14:09:50 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-02 14:09:50 -0400
commite627b99a89d346d7ad88947182d110c4aeb3272f (patch)
tree09f0bd1cbfdec05615870d01a8cedeb7eb4afc51 /extension/DEV_README.md
parent22c420cbf26293e145def3e90e7132b4a337a5a5 (diff)
parenta6a66f8a8b42eca861b05d6e7ccc0d0c2cfc8706 (diff)
downloadsncontinue-e627b99a89d346d7ad88947182d110c4aeb3272f.tar.gz
sncontinue-e627b99a89d346d7ad88947182d110c4aeb3272f.tar.bz2
sncontinue-e627b99a89d346d7ad88947182d110c4aeb3272f.zip
Merge branch 'main' into docs
Diffstat (limited to 'extension/DEV_README.md')
-rw-r--r--extension/DEV_README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/extension/DEV_README.md b/extension/DEV_README.md
new file mode 100644
index 00000000..7049da45
--- /dev/null
+++ b/extension/DEV_README.md
@@ -0,0 +1,7 @@
+# Continue VS Code Extension
+
+This is the Continue VS Code Extension. Its primary jobs are
+
+1. Implement the IDE side of the Continue IDE protocol, allowing a Continue server to interact natively in an IDE. This happens in `src/continueIdeClient.ts`.
+2. Open the Continue React app in a side panel. The React app's source code lives in the `react-app` directory. The panel is opened by the `continue.openDebugPanel` command, as defined in `src/commands.ts`.
+3. Run a Continue server in the background, which connects to both the IDE protocol and the React app. The server is launched in `src/activation/environmentSetup.ts` by calling Python code that lives in `scripts/` (unless extension settings define a server URL other than localhost:8000, in which case the extension will just connect to that).