From 133f93de00987942c0a028441c244d3f3c1fe248 Mon Sep 17 00:00:00 2001 From: Soviut Date: Sat, 27 Feb 2021 05:31:43 -0500 Subject: [PATCH] Add deps install and dev server to quick start --- packages/docs/docs/guide/getting-started.md | 38 +++++++++++++++++++++ 1 file changed, 38 insertions(+) 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.