| Index: appengine/findit/my_script.sh
|
| diff --git a/appengine/findit/my_script.sh b/appengine/findit/my_script.sh
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..dff68c524108a1b795cd88729e5c12fa4feb6559
|
| --- /dev/null
|
| +++ b/appengine/findit/my_script.sh
|
| @@ -0,0 +1,11 @@
|
| +#!/bin/bash
|
| +
|
| +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
| +APP_CFG="$DIR/../../../google_appengine/appcfg.py"
|
| +
|
| +if [ -z "$APP_CFG" ] ; then
|
| + echo "Please set \$APPCFG to the path to appcfg.py in your AppEngine SDK directory."
|
| + exit 1
|
| +fi
|
| +
|
| +python $APP_CFG -A google.com:findit-for-me update $DIR/app.yaml $DIR/crash-frontend.yaml $DIR/crash-backend-fracas.yaml --version katesonia
|
|
|