Google Cloud Platform User Group Taiwan official site
Setup 1: install python requirement libraries
pip install -r requirements.txt -t lib
// install node packages
npm install
// install bower packages
bower install
modify gulpfile.js
and set var development = false;
to build production assets
...
gulp.task('build', ['fonts', 'images', 'copy'], function () {
var development = false;
doRun(development);
});
then execute
gulp build
visit cage1016/gitkit-webapp2 to checkout detial setup steps.