-
-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📚 🐛 Fix an installation script, adding recursive submodule download
- Loading branch information
1 parent
46f19c2
commit 10b0ac0
Showing
1 changed file
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,20 @@ Master | v0.x | Develop | |
# How to set up | ||
|
||
```sh | ||
git clone [email protected]:CoMiGo/ctjs.git ctjs | ||
git clone --recurse-submodules -j8 [email protected]: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 | ||
|