docs: update requirements sections

This commit is contained in:
Henk Verlinde 2021-02-01 10:35:23 +01:00
parent ee29b64272
commit 3767e8bfa0
2 changed files with 7 additions and 7 deletions

View File

@ -71,21 +71,21 @@ Doks uses npm to install dependencies and run commands. Installing npm is pretty
## Get started ## Get started
Have your local Doks site in three steps: Start a new Doks project in three steps:
### 1. Create new Doks project ### 1. Create a new site
```bash ```bash
git clone https://github.com/h-enk/doks.git my-doks-site git clone https://github.com/h-enk/doks.git my-doks-site && cd my-doks-site
``` ```
### 2. Install npm packages ### 2. Install dependencies
```bash ```bash
npm install npm install
``` ```
### 3. Start local development server ### 3. Start development server
```bash ```bash
npm run start npm run start

View File

@ -19,7 +19,7 @@ Doks uses npm to install dependencies and run commands. Installing npm is pretty
## Start a new Doks project ## Start a new Doks project
Create a new site, change directories, install npm packages, and start development server. Create a new site, change directories, install dependencies, and start development server.
### Create a new site ### Create a new site
@ -37,7 +37,7 @@ git clone https://github.com/h-enk/doks.git my-doks-site
cd my-doks-site cd my-doks-site
``` ```
### Install npm packages ### Install dependencies
{{< btn-copy text="npm install" >}} {{< btn-copy text="npm install" >}}