August 2018

  • Tool install day(s)

The Short List

Git

Git is the software we use to send information back and forth to GitHub

This installation may be different from Mac to PC

Configure Git


$ 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
            

Using Git Guides

GitHub

We're going to use GitHub for hosting our source code.

Go to GitHub.com and sign up for an account.

NodeJS

We're going to use Node js to run a mini web server

Download

Gulp

Gulp is a Node Tool that executes tasks for us.

Getting setup


    npm install gulp-cli -g
    npm install gulp --save-dev
        

"Assignment"

  • Create your own GitHub Repository
  • Clone your repository
  • Clone this into a separate folder https://github.com/uagc-it-readiness/front-end-development-course-assignments
  • Copy the contents of 'website-template' into your repository.
  • Update the index.html the exercise from Thursday
  • Commit and Push your code to GitHub
  • Send me a link to your repository.
>