diff options
author | Yukai Huang | 2016-10-14 19:28:54 +0800 |
---|---|---|
committer | Yukai Huang | 2016-10-16 11:20:29 +0800 |
commit | 9f63581c61249703cb057547360782728b97e81e (patch) | |
tree | 2544bd01ad19f22daf62edeeb6947f8aa67d4144 /bin/setup | |
parent | 33d070e52d3b7792b50ac86c175e91f444027143 (diff) |
Config heroku deployment
Diffstat (limited to 'bin/setup')
-rwxr-xr-x | bin/setup | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2,7 +2,9 @@ # run command at repo root CURRENT_PATH=$PWD -cd $(git rev-parse --show-toplevel) +if [ -d .git ]; then + cd $(git rev-parse --show-toplevel) +fi if ! type npm > /dev/null then @@ -34,7 +36,7 @@ if [ ! -f .sequelizerc ]; then fi echo "install npm and bower packages" -npm install && bower install +BUILD_ASSETS=false npm install && bower install cat << EOF |