mirror of
https://github.com/YunoHost-Apps/codimd_ynh.git
synced 2024-09-03 18:16:32 +02:00
10 lines
302 B
Text
10 lines
302 B
Text
const path = require('path')
|
|
const config = require('./lib/config')
|
|
|
|
module.exports = {
|
|
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__'
|
|
}
|
|
|