diff options
author | Max Wu | 2016-10-16 16:02:00 +0800 |
---|---|---|
committer | GitHub | 2016-10-16 16:02:00 +0800 |
commit | 5e72a69d18ce6a41932a520484ca712822f889b1 (patch) | |
tree | 0d2dfb9207b555db9a639adf9f7a34b0d0b7e9c6 /bin/setup | |
parent | 33d070e52d3b7792b50ac86c175e91f444027143 (diff) | |
parent | bd7efb80962442cfd010620411d8ee8829c334a4 (diff) |
Merge pull request #213 from Yukaii/heroku-deploy
Config heroku deployment
Diffstat (limited to '')
-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 |