Skip to content

Commit

Permalink
use local bower / gulp modules
Browse files Browse the repository at this point in the history
  • Loading branch information
mindreframer committed Aug 3, 2014
1 parent 432f10c commit 6cbe0e8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
15 changes: 9 additions & 6 deletions README.md
Expand Up @@ -12,16 +12,19 @@ First, clone the repo...

`git clone git@github.com:johnthethird/react-starter-template.git`

Then install the bower and npm modules
Then install the npm and bower modules

```
bower install
npm install
$ npm install
$ bin/bower install
```

`gulp dev` then go to http://localhost:4000/index.html

If you have the Chrome LiveReload extension installed, then your browser will automatically reload when any file in /src changes.
start server
```
$ bin/gulp dev
```

then go to http://localhost:4000/index.html


If you have the Chrome LiveReload extension installed, then your browser will automatically reload when any file in /src changes.
3 changes: 3 additions & 0 deletions bin/bower
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

./node_modules/bower/bin/bower $*
3 changes: 3 additions & 0 deletions bin/gulp
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

./node_modules/gulp/bin/gulp.js $*

0 comments on commit 6cbe0e8

Please sign in to comment.