diff --git a/packages/docs/docs/guide/getting-started.md b/packages/docs/docs/guide/getting-started.md index e2fcd4c756..bc591ec389 100644 --- a/packages/docs/docs/guide/getting-started.md +++ b/packages/docs/docs/guide/getting-started.md @@ -37,6 +37,44 @@ You will then have the opportunity to configure your VuePress site’s metadata Once it is complete, you should see your new VuePress site scaffolded in your directory! :tada: +The scaffold creates a `/docs` directory containing a `package.json`. + +To install the package dependencies, run the following: + + + +```bash +cd /docs +yarn install +``` + + + +```bash +cd /docs +npm install +``` + + + +With the dependencies installed you can now run the development server: + + + +```bash +npm run dev +``` + + + +```bash +yarn run dev +``` + + + +Browse to http://localhost:8081 to view the live development server. + ## Manual Installation This section will help you build a basic VuePress documentation site from ground up. If you already have an existing project and would like to keep documentation inside the project, start from Step 3.