codimd/bin/heroku

28 lines
411 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
const path = require('path')
const config = require('./lib/config')
module.exports = {
'migrations-path': path.resolve('lib', 'migrations'),
'models-path': path.resolve('lib', 'models'),
url: process.env['CMD_DB_URL'] || config.dbURL
}
EOF
2016-10-14 11:28:54 +00:00
cat << EOF > config.json
2016-12-11 04:07:46 +00:00
{
"production": {
}
}
EOF
2016-10-14 11:28:54 +00:00
fi