From 3767e8bfa0893d9bb827c35b5b2694c023e78ceb Mon Sep 17 00:00:00 2001 From: Henk Verlinde Date: Mon, 1 Feb 2021 10:35:23 +0100 Subject: [PATCH] docs: update requirements sections --- README.md | 10 +++++----- content/docs/prologue/quick-start.md | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index eecbfa8..36e8f04 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/content/docs/prologue/quick-start.md b/content/docs/prologue/quick-start.md index 2d9218c..a516f2a 100644 --- a/content/docs/prologue/quick-start.md +++ b/content/docs/prologue/quick-start.md @@ -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" >}}