From fc3def44d6a2012ead09b9f59fb9a3d28d4a83e4 Mon Sep 17 00:00:00 2001 From: Wouter Termont Date: Mon, 10 May 2021 23:17:26 +0200 Subject: [PATCH] docs: update readme commands (#179) Co-authored-by: Wouter Janssens --- README.adoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.adoc b/README.adoc index 9c809033..fda99c87 100644 --- a/README.adoc +++ b/README.adoc @@ -8,25 +8,25 @@ Opzet van een collectiebeheersysteem voor digitale objecten van kleine erfgoedin == Run locally -When running the app locally for the first time, start by installing its dependencies. You can do so by executing the following command in the root of the cloned repository. +When running the app locally for the first time, or after an update, start by installing its dependencies. You can do so by executing the following command in the root of the cloned repository. [source,bash] ---- $ npm run bootstrap:no-ci ---- -Once the dependencies have installed, you can start the app by executing the following command. +Once the dependencies are installed, you can build the app by executing the following command. [source,bash] ---- -$ npm run start +$ npm run build:all ---- -The `start` command automatically builds the necessary dependencies before starting the application. However, you can also build the app and its dependencies separately from the `start` command as follows. +After installing and building once, you can start the app at any time by executing the following command. [source,bash] ---- -$ npm run build +$ npm run start ---- == Run with Docker