Commit 3767e8bf authored by Henk Verlinde's avatar Henk Verlinde
Browse files

docs: update requirements sections

parent ee29b642
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -71,21 +71,21 @@ Doks uses npm to install dependencies and run commands. Installing npm is pretty

## 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
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
npm install
```

### 3. Start local development server
### 3. Start development server

```bash
npm run start
+2 −2
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ Doks uses npm to install dependencies and run commands. Installing npm is pretty

## 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

@@ -37,7 +37,7 @@ git clone https://github.com/h-enk/doks.git my-doks-site
cd my-doks-site
```

### Install npm packages
### Install dependencies

{{< btn-copy text="npm install" >}}