mirror of https://github.com/status-im/codimd.git
29 lines
431 B
Bash
Executable File
29 lines
431 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ ! -z "$DYNO" ]; 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
|
|
}
|
|
|
|
EOF
|
|
|
|
cat << EOF > config.json
|
|
|
|
{
|
|
"production": {
|
|
}
|
|
}
|
|
|
|
EOF
|
|
|
|
fi
|