$ npm install -g gulp # Install Gulp task runner globally
$ npm install # Install Node.js components listed in ./package.json
$ gulp build # or, `gulp build --release`
By default, it builds in debug mode. If you need to build in release mode, add
--release
flag. This will minimize your JavaScript; you will also see some warnings from
uglify where it removes unused code from your release.
$ gulp # or, `gulp --release`
This will start a lightweight development server with LiveReload and synchronized browsing across multiple devices and browsers.
To update the API URL for a deployment, edit the getApiUrl() function in src/api/apiUtils.js
This project was built on top of the Kriasoft React Starter Kit The MIT License © Konstantin Tarkus (@koistya)