Skip to content

gdgcloud-taipei/gcpug.tw

Repository files navigation

gcpug.tw

Google Cloud Platform User Group Taiwan official site

Setup 1: install python requirement libraries

pip install -r requirements.txt -t lib

Setup 1: install front-end development tool

// install node packages
npm install

// install bower packages
bower install

Setup 2: Build font-end assets

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

Setup 3: setup gitkit (google identity toolkit)

visit cage1016/gitkit-webapp2 to checkout detial setup steps.