summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/main.yaml129
-rw-r--r--extension/README.md4
2 files changed, 71 insertions, 62 deletions
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml
index f2fcf368..9d9eb186 100644
--- a/.github/workflows/main.yaml
+++ b/.github/workflows/main.yaml
@@ -1,77 +1,82 @@
-# name: Publish Extension
+name: Publish Extension
-# on:
-# push:
-# branches:
-# - main
+on:
+ push:
+ branches:
+ - main
-# jobs:
-# publish:
-# runs-on: ubuntu-latest
+jobs:
+ do-nothing:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+ # publish:
+ # runs-on: ubuntu-latest
-# steps:
-# - name: Checkout
-# uses: actions/checkout@v2
+ # steps:
+ # - name: Checkout
+ # uses: actions/checkout@v2
-# - name: Set up Python
-# uses: actions/setup-python@v2
-# with:
-# python-version: "3.8"
+ # - name: Set up Python
+ # uses: actions/setup-python@v2
+ # with:
+ # python-version: "3.8"
-# - name: Install Poetry
-# run: |
-# curl -sSL https://install.python-poetry.org | python3 -
+ # - name: Install Poetry
+ # run: |
+ # curl -sSL https://install.python-poetry.org | python3 -
-# - name: Install Python dependencies
-# run: |
-# cd continuedev
-# poetry install
+ # - name: Install Python dependencies
+ # run: |
+ # cd continuedev
+ # poetry install
-# - name: Cache extension node_modules
-# uses: actions/cache@v2
-# with:
-# path: extension/node_modules
-# key: ${{ runner.os }}-node-${{ hashFiles('extension/package-lock.json') }}
+ # - name: Cache extension node_modules
+ # uses: actions/cache@v2
+ # with:
+ # path: extension/node_modules
+ # key: ${{ runner.os }}-node-${{ hashFiles('extension/package-lock.json') }}
-# - name: Cache react-app node_modules
-# uses: actions/cache@v2
-# with:
-# path: extension/react-app/node_modules
-# key: ${{ runner.os }}-node-${{ hashFiles('extension/react-app/package-lock.json') }}
+ # - name: Cache react-app node_modules
+ # uses: actions/cache@v2
+ # with:
+ # path: extension/react-app/node_modules
+ # key: ${{ runner.os }}-node-${{ hashFiles('extension/react-app/package-lock.json') }}
-# - name: Set up Node.js
-# uses: actions/setup-node@v2
-# with:
-# node-version: "14"
+ # - name: Set up Node.js
+ # uses: actions/setup-node@v2
+ # with:
+ # node-version: "14"
-# - name: Install extension Dependencies
-# run: |
-# cd extension
-# npm ci --legacy-peer-deps
+ # - name: Install extension Dependencies
+ # run: |
+ # cd extension
+ # npm ci --legacy-peer-deps
-# - name: Install react-app Dependencies
-# run: |
-# cd extension/react-app
-# npm ci --legacy-peer-deps
+ # - name: Install react-app Dependencies
+ # run: |
+ # cd extension/react-app
+ # npm ci --legacy-peer-deps
-# - name: Build and Publish
-# run: |
-# cd extension
-# npm run full-package
+ # - name: Build and Publish
+ # run: |
+ # cd extension
+ # npm run full-package
-# - name: Commit changes
-# run: |
-# git config --local user.email "action@github.com"
-# git config --local user.name "GitHub Action"
-# git commit -am "Update package.json version [skip ci]"
+ # - name: Commit changes
+ # run: |
+ # git config --local user.email "action@github.com"
+ # git config --local user.name "GitHub Action"
+ # git commit -am "Update package.json version [skip ci]"
-# - name: Push changes
-# uses: ad-m/github-push-action@master
-# with:
-# github_token: ${{ secrets.GITHUB_TOKEN }}
+ # - name: Push changes
+ # uses: ad-m/github-push-action@master
+ # with:
+ # github_token: ${{ secrets.GITHUB_TOKEN }}
-# - name: Upload .vsix artifact
-# uses: actions/upload-artifact@v2
-# with:
-# name: vsix-artifact
-# path: extension/build/*
+ # - name: Upload .vsix artifact
+ # uses: actions/upload-artifact@v2
+ # with:
+ # name: vsix-artifact
+ # path: extension/build/*
diff --git a/extension/README.md b/extension/README.md
index acb9e097..55f8eeaa 100644
--- a/extension/README.md
+++ b/extension/README.md
@@ -2,6 +2,8 @@
**[Continue](https://continue.dev/docs) is the open-source autopilot for software development—a [VS Code extension](https://marketplace.visualstudio.com/items?itemName=Continue.continue) that brings the power of ChatGPT to your IDE**
+![Editing with Continue](https://github.com/continuedev/continue/blob/main/readme.gif?raw=true)
+
## Task, not tab, auto-complete
### Get possible explainations
@@ -41,6 +43,8 @@ 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)
+
## License
[Apache 2.0 © 2023 Continue Dev, Inc.](./LICENSE)