summaryrefslogtreecommitdiff
path: root/extension/DEV_README.md
diff options
context:
space:
mode:
authorKirill Dubovitskiy <kirill2003de@gmail.com>2023-08-08 13:42:57 -0700
committerKirill Dubovitskiy <kirill2003de@gmail.com>2023-08-08 16:00:53 -0700
commitf4ba68d5ce26463e6337822f8bf70e55a2d471d3 (patch)
tree9d4f78bcc570e81944004a755439062fb3a5177b /extension/DEV_README.md
parent5295d1214be20f49aeb7d525420b880e5721b87e (diff)
downloadsncontinue-f4ba68d5ce26463e6337822f8bf70e55a2d471d3.tar.gz
sncontinue-f4ba68d5ce26463e6337822f8bf70e55a2d471d3.tar.bz2
sncontinue-f4ba68d5ce26463e6337822f8bf70e55a2d471d3.zip
Updated documentation to reflect the new fastest getting started path in VSCode
Diffstat (limited to 'extension/DEV_README.md')
-rw-r--r--extension/DEV_README.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/extension/DEV_README.md b/extension/DEV_README.md
deleted file mode 100644
index 3ad9cf68..00000000
--- a/extension/DEV_README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# 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.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 `server/` (unless extension settings define a server URL other than localhost:65432, in which case the extension will just connect to that).
-
-## How to debug the VS Code Extension
-
-1. Clone the Continue repo
-
-2. Open a VS Code window with the `continue` directory as your workspace
-
-3. Package and then start the FastAPI server by following instructions outlined in the `Continue Server` section of the `continuedev/README.md`
-
-4. Open a VS Code window with the `extension` directory as your workspace
-
-5. Run `npm run package`
-
-6. Open `src/activation/activate.ts` file (or any TypeScript file)
-
-7. Press `F5` on your keyboard to start `Run and Debug` mode
-
-8. `cmd+shift+p` to look at developer console and select Continue commands
-
-9. Every time you make changes to the code, you need to run `npm run esbuild` unless you make changes inside of `react-app` and then you need to run `npm run build` from there
-
-## Notes
-
-- We require vscode engine `^1.67.0` and use `@types/vscode` version `1.67.0` because this is the earliest version that doesn't break any of the APIs we are using. If you go back to `1.66.0`, then it will break `vscode.window.tabGroups`.