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
This repository contains the source files for the documentation found at [docs.vapi.ai](https://docs.vapi.ai/). You can suggest edits by making a pull request.
3
+
This repository contains the source files for the documentation found at [docs.vapi.ai](https://docs.vapi.ai/).
4
+
5
+
## How can I contribute to these docs?
6
+
7
+
You can suggest edits by making a pull request.
8
+
9
+
## How to update documentation?
10
+
11
+
### Local Development server
12
+
13
+
To run a local development server with hot-reloading you can run the following command
14
+
15
+
```sh
16
+
fern docs dev
17
+
```
18
+
19
+
#### Hosted URL
20
+
21
+
To update your documentation on a hosted URL, run
22
+
```
23
+
# npm install -g fern-api
24
+
fern generate --docs
25
+
```
26
+
To preview your documentation, run
27
+
```
28
+
# npm install -g fern-api
29
+
fern generate --docs --preview
30
+
```
31
+
The repository contains GitHub workflows that will automatically run these commands for you. For example, when you make a PR a preview link will be auto-generated and when you merge to main the docs site will update.
0 commit comments