summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extension/README.md24
-rw-r--r--extension/package-lock.json4
-rw-r--r--extension/package.json2
3 files changed, 26 insertions, 4 deletions
diff --git a/extension/README.md b/extension/README.md
index 55f8eeaa..f2dbd164 100644
--- a/extension/README.md
+++ b/extension/README.md
@@ -43,7 +43,29 @@ If your Continue server is not setting up, please check the console logs:
3. Select `Console`
4. Read the console logs
-\*The Continue VS Code extension is currently in beta. It will attempt to start the Continue Python server locally for you, but if this fails you can run the server manually as is explained here: [Running the Continue server manually](https://continue.dev/docs/how-continue-works)
+# Troubleshooting
+
+The Continue VS Code extension is currently in beta. It will attempt to start the Continue Python server locally for you, but sometimes this will fail, causing the "Starting Continue server..." not to disappear, or other hangups. There are a few things you can do to troubleshoot:
+
+### Reload VS Code
+
+Open the command palette with cmd+shift+p, then type "Reload Window" and select it. This will give Continue another chance to start the server.
+
+### Kill the existing server
+
+If the above doesn't work, you can try to kill the server manually before reloading.
+
+1. Open any terminal
+2. Enter `lsof -i :65432 | grep "(LISTEN)" | awk '{print $2}' | xargs kill -9` to kill the server running on port 65432.
+3. Restart VS Code, and Continue will attempt to start a fresh server.
+
+### Run the server manually
+
+If none of these work, you can start the server yourself as is explained here: [Running the Continue server manually](https://continue.dev/docs/how-continue-works)
+
+### Still having trouble?
+
+Create a GitHub issue [here](https://github.com/continuedev/continue/issues/new?assignees=&labels=bug&projects=&template=bug-report-%F0%9F%90%9B.md&title=), leaving the details of your problem, and we'll be able to more quickly help you out.
## License
diff --git a/extension/package-lock.json b/extension/package-lock.json
index 2ab3ad94..568cefe2 100644
--- a/extension/package-lock.json
+++ b/extension/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "continue",
- "version": "0.0.229",
+ "version": "0.0.231",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "continue",
- "version": "0.0.229",
+ "version": "0.0.231",
"license": "Apache-2.0",
"dependencies": {
"@electron/rebuild": "^3.2.10",
diff --git a/extension/package.json b/extension/package.json
index 481fbdd9..af446bde 100644
--- a/extension/package.json
+++ b/extension/package.json
@@ -14,7 +14,7 @@
"displayName": "Continue",
"pricing": "Free",
"description": "The open-source coding autopilot",
- "version": "0.0.229",
+ "version": "0.0.231",
"publisher": "Continue",
"engines": {
"vscode": "^1.67.0"