Git is the software we use to send information back and forth to GitHub
This installation may be different from Mac to PC
$ git config --global user.name "Your Name Here"
# Sets the default name for git to use when you commit
$ git config --global user.email "your_email@example.com"
# Sets the default email for git to use when you commit
$ git config --list
We're going to use GitHub for hosting our source code.
Go to GitHub.com and sign up for an account.
We're going to use Node js to run a mini web server
Gulp is a Node Tool that executes tasks for us.
npm install gulp-cli -g
npm install gulp --save-dev