HackMD/bin/heroku

36 lines
606 B
Plaintext
Raw Normal View History

2016-10-14 11:28:54 +00:00
#!/bin/bash
set -e
if [ "$BUILD_ASSETS" = true ]; then
2016-12-11 02:31:51 +00:00
BUILD_ASSETS=false npm install
2016-10-14 11:28:54 +00:00
# setup config files
cat << EOF > .sequelizerc
var path = require('path');
module.exports = {
'config': path.resolve('config.json'),
'migrations-path': path.resolve('lib', 'migrations'),
'models-path': path.resolve('lib', 'models'),
'url': process.env.DATABASE_URL,
'dialect': process.env.DB_TYPE
}
EOF
cat << EOF > config.json
{
"production": {
}
}
EOF
cp public/js/config.js.example public/js/config.js
# build app
npm run build:prod
2016-10-14 11:28:54 +00:00
fi