From 537d36fc4eb51ba041bcb173b5c32a212d94a37d Mon Sep 17 00:00:00 2001 From: stephen grider Date: Sat, 23 May 2015 13:10:56 -0700 Subject: [PATCH] Added readme --- README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..b14790d --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +ReactStarter +==== + +Use this as a starting point for working on chapters of the [Learn and Understand React JS](https://www.udemy.com/learn-and-understand-reactjs/) course on Udemy.com. + +--- + +###Getting Started### + +There are two methods for getting started with this repo. + +####Familiar with Git?##### +Checkout this repo, install depdencies, then start the gulp process with the following: + +``` + > git clone git@github.com:StephenGrider/ReactStarter.git + > cd ReactStarter + > npm install + > gulp +``` + +####Not Familiar with Git?##### +Click [here](https://github.com/StephenGrider/ReactStarter/releases) then download the .zip file. Extract the contents of the zip file, then open your terminal, change to the project directory, and: + +``` + > npm install + > gulp +```