diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-07-10 23:36:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 23:36:46 -0700 |
commit | 3dc307bc9add75fba1f66c51218f0c32637e21fe (patch) | |
tree | 67a28ed86a73b3f89f75b60ca6e03d959d550cfc /extension/DEV_README.md | |
parent | a8795b929bb18f623a64fedcdbb83a790266943b (diff) | |
parent | 10f5c2beb34e755c1fedf637186bace6b030e44d (diff) | |
download | sncontinue-3dc307bc9add75fba1f66c51218f0c32637e21fe.tar.gz sncontinue-3dc307bc9add75fba1f66c51218f0c32637e21fe.tar.bz2 sncontinue-3dc307bc9add75fba1f66c51218f0c32637e21fe.zip |
Merge pull request #233 from continuedev/faster-load
Faster load
Diffstat (limited to 'extension/DEV_README.md')
-rw-r--r-- | extension/DEV_README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/DEV_README.md b/extension/DEV_README.md index c247b82c..87ed9334 100644 --- a/extension/DEV_README.md +++ b/extension/DEV_README.md @@ -4,7 +4,7 @@ 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.openContinueGUI` 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:65432, in which case the extension will just connect to that). +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 `server/` (unless extension settings define a server URL other than localhost:65432, in which case the extension will just connect to that). 4. Open Continue |