2013-04-12 21:19:21 +04:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Deploys the app to App Engine.
|
|
|
|
#
|
|
|
|
# Note: This script should be used in place of using appcfg.py update directly
|
|
|
|
# to update the application on App Engine.
|
|
|
|
#
|
|
|
|
# Copyright 2013 Eric Bidelman <ericbidelman@chromium.org>
|
|
|
|
|
|
|
|
|
|
|
|
# The directory in which this script resides.
|
|
|
|
readonly BASEDIR=$(dirname $BASH_SOURCE)
|
|
|
|
|
2014-03-24 20:23:22 +04:00
|
|
|
# vulcanize $BASEDIR/../static/elements/elements.html -o $BASEDIR/../static/elements/elements.vulcanized.html --config vulcanize_config.json
|
|
|
|
|
|
|
|
grunt
|
2014-03-02 09:54:17 +04:00
|
|
|
|
2013-04-12 21:19:21 +04:00
|
|
|
$BASEDIR/oauthtoken.sh deploy
|
2013-09-28 03:50:58 +04:00
|
|
|
appcfg.py update --oauth2 $BASEDIR/../
|