codimd/bin/heroku

29 lines
431 B
Plaintext
Raw Normal View History

2016-10-14 11:28:54 +00:00
#!/bin/bash
set -e
if [ ! -z "$DYNO" ]; then
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
2016-10-14 11:28:54 +00:00
}
EOF
cat << EOF > config.json
2016-12-11 04:07:46 +00:00
{
"production": {
}
}
EOF
2016-10-14 11:28:54 +00:00
fi