HackMD/bin/heroku

32 lines
515 B
Plaintext
Raw Normal View History

2016-10-14 11:28:54 +00:00
#!/bin/bash
set -e
if [ "$BUILD_ASSETS" = true ]; then
# 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
2016-12-11 04:07:46 +00:00
{
"production": {
}
}
EOF
2016-10-14 11:28:54 +00:00
# build app
npm run build
2016-10-14 11:28:54 +00:00
fi