diff options
author | Claudius Coenen | 2019-03-31 12:41:38 +0200 |
---|---|---|
committer | GitHub | 2019-03-31 12:41:38 +0200 |
commit | d08d9f34b0775328ec19c523d3dc203155882083 (patch) | |
tree | 66a9dd399db12d3bb5c4ee67b218bf781ccf114e /bin/heroku | |
parent | 7f04013f4a4dccfa6b13f529baeaf7c7d6a51f09 (diff) | |
parent | 5c607c4f80e2c00699dcd74404b8652e0dfbbe94 (diff) |
Merge pull request #13 from ccoenen/feature/heroku-cleanup
cleanup of the heroku configuration
Diffstat (limited to '')
-rwxr-xr-x | bin/heroku | 10 |
1 files changed, 2 insertions, 8 deletions
@@ -2,9 +2,7 @@ set -e -if [ "$BUILD_ASSETS" = true ]; then - # setup config files - cat << EOF > .sequelizerc +cat << EOF > .sequelizerc var path = require('path'); module.exports = { @@ -17,7 +15,7 @@ module.exports = { EOF - cat << EOF > config.json +cat << EOF > config.json { "production": { @@ -25,7 +23,3 @@ EOF } EOF - - # build app - npm run build -fi |