For Developers:
- In the root directory, run
npm start
to start the server
- In a new terminal window, enter the client directory with
cd client
- Start the client with
npm start
MAKE SURE YOU HAVE THE CORRECT PACKAGES INSTALLED USING npm install
.
- Create a new branch with
git checkout -b branchname
- delete the node modules with
rm -rf node_modules
- delete the package-lock json file
rm -f package-lock.json
- clean the npm cache with
npm cache clean --force
- install the dependencies again with
npm install
- now try
npm start
- Run
node server/test/runTests.js
in the root directory