-
- Install git
- a)
https://git-scm.com/
-
- Install nodejs/npm(node package manager)
- a)
https://nodejs.org/en/download/
-
- Install mongoDB
- a)
https://www.mongodb.org/
-
- Install mongoDB from above link
-
- Follow MongoDB's guide to get mongo up and running
- a)
https://docs.mongodb.org/manual/tutorial/install-mongodb-on-windows/
-
- Fork project to your personal repo
- a) Use fork button at the top of the page
- You will then be redirected to your personal repo
-
- Pull Down Project
- a)
git pull "your repo URL here"
-
- Navigate into the project's root directory and run the following command
- a)
npm install
- I) This is installing all dependencies for the project, so everything is set up and can run correctly.
-
- Run the following command in the project's root directory
- a)
node bin/www
- I) This command starts the nodejs server using our project.
-
- Navigate to the following site in your browser
- a)
localhost:8000