ff-stream-web

git clone git://archive.git.mtrnord.blog/MTRNord/ff-stream-web.git
Log | Files | Refs | README | LICENSE

commit cbbb60c5b0e636c5b1d8ad7eb9ee9ff5c9a6ff3d
parent 7ac8e6597b5123c8e4daa4b975e55423907a5aee
Author: Konstantin Tarkus <hello@tarkus.me>
Date:   Thu, 16 Apr 2015 09:49:10 +0300

Update README.md

Diffstat:
MREADME.md | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md @@ -48,7 +48,7 @@ Just [clone](github-windows://openRepo/https://github.com/kriasoft/react-starter-kit) or [fork](https://github.com/kriasoft/react-starter-kit/fork) the repo and start hacking: ```shell -$ git clone -o upstream https://github.com/kriasoft/react-starter-kit.git MyApp +$ git clone -o react-starter-kit https://github.com/kriasoft/react-starter-kit.git MyApp $ cd MyApp $ npm install -g gulp # Install Gulp task runner globally $ npm install # Install Node.js components listed in ./package.json @@ -75,10 +75,11 @@ synchronized browsing across multiple devices and browsers. ### How to Deploy ```shell +$ gulp build --release # Builds the project in release mode $ gulp deploy # or, `gulp deploy --production` ``` -For more information see 'deploy' task in `gulpfile.js`. +For more information see `deploy` task in `gulpfile.js`. ### How to Update @@ -87,8 +88,8 @@ your own project: ```shell $ git checkout master -$ git fetch upstream -$ git merge upstream/master +$ git fetch react-starter-kit +$ git merge react-starter-kit/master $ npm install ```