From 10b0ac08d8d381900a56804a8d0ae2261713dd3d Mon Sep 17 00:00:00 2001 From: Cosmo Myzrail Gorynych Date: Thu, 8 Aug 2019 14:14:27 +1200 Subject: [PATCH] :books: :bug: Fix an installation script, adding recursive submodule download --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4afda81b5..601b66a62 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,20 @@ Master | v0.x | Develop # How to set up ```sh -git clone git@gitlab.com:CoMiGo/ctjs.git ctjs +git clone --recurse-submodules -j8 git@gitlab.com:CoMiGo/ctjs.git ctjs cd ./ctjs -git submodule update --init --recursive +npm install gulp-cli -g +npm install +cd ./docs +npm install +cd ./../app +npm install +cd ./../ +``` + +Or, if you already cloned a git repo but without submodules, run `git submodule update --init --recursive` first, then + +```sh npm install gulp-cli -g npm install cd ./docs