From bd0efdf7a0e04a6b85f78311db8c1664cf5136e0 Mon Sep 17 00:00:00 2001
From: Thijs Kinkhorst <thijs@kinkhorst.com>
Date: Tue, 4 Dec 2018 12:53:42 +0000
Subject: [PATCH] Update install/build instructions

---
 docs/simplesamlphp-install-repo.md | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/docs/simplesamlphp-install-repo.md b/docs/simplesamlphp-install-repo.md
index cba84990a..0de258dcd 100644
--- a/docs/simplesamlphp-install-repo.md
+++ b/docs/simplesamlphp-install-repo.md
@@ -3,8 +3,8 @@ Installing SimpleSAMLphp from the repository
 
 These are some notes about running SimpleSAMLphp from the repository.
 
-Installing from github
-----------------------
+Installing from git
+-------------------
 
 Go to the directory where you want to install SimpleSAMLphp:
 
@@ -20,10 +20,16 @@ Initialize configuration and metadata:
     cp -r config-templates/* config/
     cp -r metadata-templates/* metadata/
 
-Install the external dependencies with Composer (you can refer to [getcomposer.org](http://getcomposer.org/) to get detailed
-instructions on how to install Composer itself):
+Install the external dependencies with Composer (you can refer to
+[getcomposer.org](https://getcomposer.org/) to get detailed
+instructions on how to install Composer itself) and npm:
 
     php composer.phar install
+    npm install
+
+Build the assets:
+
+    npm run build
 
 
 Upgrading
@@ -38,8 +44,8 @@ Ask git to update to the latest version:
     git fetch origin
     git pull origin master
 
-Install or upgrade the external dependencies with Composer and npm ([get composer](http://getcomposer.org/)):
+Install or upgrade the external dependencies with Composer and npm:
 
     php composer.phar install
     npm install
-
+    npm run build
-- 
GitLab