-
Notifications
You must be signed in to change notification settings - Fork 0
4. Troubleshooting
Jake edited this page Mar 13, 2018
·
1 revision
Don't forget to install the dependencies after downloading the repo or pulling down a new and/or updated branch:
npm install
The node_modules
folder is not present in the repo because it is added to the .gitignore
file and should be installed locally before running the project:
There may have been something left behind (or missing) in the node_modules folder, nuke it and re-install:
sudo rm -R node_modules
npm install
To pull down new branches:
git pull
git checkout <branchname>