1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/codimd_ynh.git synced 2024-09-03 18:16:32 +02:00
codimd_ynh/conf/.sequelizerc.example

11 lines
302 B
Text
Raw Normal View History

2021-05-08 15:44:58 +02:00
const path = require('path')
const config = require('./lib/config')
2018-11-21 19:44:50 +01:00
module.exports = {
2021-05-08 15:44:58 +02:00
config: path.resolve('config.js'),
'migrations-path': path.resolve('lib', 'migrations'),
'models-path': path.resolve('lib', 'models'),
url: 'postgres://__DB_NAME__:__DB_PWD__@localhost:5432/__DB_NAME__'
2018-11-21 19:44:50 +01:00
}
2021-05-08 15:44:58 +02:00