From 30831b236715c62db9efb9e57123595c4de496d0 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Wed, 17 Oct 2018 23:21:44 +0200 Subject: [PATCH] Add install command to DEVELOPMENT --- DEVELOPMENT.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 36789b7..a4d2022 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -18,6 +18,9 @@ nano config/development.yaml # Run the webserver (it watches for changes) npm run start:web +# Install dependencies +npm install + # Run the backend (does not watch for changes) npm run build:app && node build/app/index.js ```