summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/docusaurus.config.js3
-rw-r--r--docs/package.json1
-rw-r--r--docs/src/pages/index.js2
-rw-r--r--extension/README.md8
4 files changed, 7 insertions, 7 deletions
diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js
index 1730332a..0e9710cb 100644
--- a/docs/docusaurus.config.js
+++ b/docs/docusaurus.config.js
@@ -39,6 +39,7 @@ const config = {
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
+ routeBasePath: '/',
sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://github.com/continuedev/continue/",
},
@@ -82,7 +83,7 @@ const config = {
items: [
{
label: "Introduction",
- to: "/docs/docs/intro",
+ to: "/intro",
},
],
},
diff --git a/docs/package.json b/docs/package.json
index d066e7fc..67e82dd6 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -6,6 +6,7 @@
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
+ "build:netlify": "docusaurus build --out-dir build/docs",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
diff --git a/docs/src/pages/index.js b/docs/src/pages/index.js
index cbe05d60..62a83316 100644
--- a/docs/src/pages/index.js
+++ b/docs/src/pages/index.js
@@ -17,7 +17,7 @@ function HomepageHeader() {
<div className={styles.buttons}>
<Link
className="button button--secondary button--lg"
- to="/docs/docs/getting-started"
+ to="/docs/getting-started"
>
GitHub Codespaces Demo
</Link>
diff --git a/extension/README.md b/extension/README.md
index 8b823978..63200a85 100644
--- a/extension/README.md
+++ b/extension/README.md
@@ -6,18 +6,16 @@ You can use Continue to use and create recipes that automate the most repetitive
## Getting Started
-After install is complete, the Continue extension should automatically open. You can also open it with `cmd+shift+p` on Mac / `ctrl+shift+p` on Windows and then selecting `Continue: Open Debug Panel`
+After install is complete, the Continue extension will automatically open. You can also open it by pressing `cmd+shift+p` on Mac / `ctrl+shift+p` on Windows and then selecting `Continue: Open Continue GUI`
To test a few common recipes, open a blank python file and try the following:
-- Ask it to "write me a calculator class in python"
+- Ask "write a calculator class in python"
- /comment to write comments for the class
- /pytest to write Pytest unit tests in a separate file
- Ask in natural language for a new method
-Check out the [Catalog](https://continue.dev/docs/catalog) to see the full list of recipes
-
-Give Continue a start on GitHub [here](https://github.com/continuedev/continue)
+Give Continue a star on GitHub [here](https://github.com/continuedev/continue)
## Feedback