You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -50,9 +62,32 @@ Continue is quickly adding features, and we'd love to hear which are the most im
50
62
51
63
Continue is continuously improving, but a feature isn't complete until it is reflected in the documentation! If you see something out-of-date or missing, you can help by clicking "Edit this page" at the bottom of any page on [docs.continue.dev](https://docs.continue.dev).
52
64
65
+
### Running the Documentation Server Locally
66
+
67
+
You can run the documentation server locally using either of the following methods:
68
+
69
+
#### Method 1: NPM Script
70
+
71
+
1. Open your terminal and navigate to the root directory of the project.
72
+
73
+
2. Run the following command to start the documentation server:
74
+
```bash
75
+
npm run start --prefix docs
76
+
```
77
+
78
+
#### Method 2: VS Code Task
79
+
80
+
1. Open VS Code in the root directory of the project.
81
+
82
+
2. Open the VS Code command pallet (`cmd/ctrl+shift+p`) and select `Tasks: Run Task`.
83
+
84
+
3. Look for the `docs:start` task and select it.
85
+
86
+
This will start a local server and you can see the documentation rendered in your default browser, typically accessible at `http://localhost:3000`.
87
+
53
88
## 🧑💻 Contributing Code
54
89
55
-
> Please make PRs to the `preview` branch. We use this to first test changes in a pre-release version of the extension.
90
+
> Please make PRs to the `dev` branch. We use this to first test changes in a pre-release version of the extension.
56
91
57
92
### Environment Setup
58
93
@@ -70,9 +105,9 @@ nvm use
70
105
71
106
2. Clone your forked repository to your local machine. Use: `git clone https://github.com/YOUR_USERNAME/continue.git`
72
107
73
-
3. Navigate to the cloned directory and switch to the **preview** branch. Execute: `git checkout preview`, then create your feature/fix branch from there, like so: `git checkout -b 123-my-feature-branch`
108
+
3. Navigate to the cloned directory and switch to the **dev** branch. Execute: `git checkout dev`, then create your feature/fix branch from there, like so: `git checkout -b 123-my-feature-branch`
74
109
75
-
4. When you're ready to submit your changes, send your pull request specifically to the **preview** branch.
110
+
4. When you're ready to submit your changes, send your pull request specifically to the **dev** branch.
0 commit comments