mirror of
https://github.com/YunoHost-Apps/hedgedoc_ynh.git
synced 2024-09-03 19:25:52 +02:00
8 lines
301 B
Text
8 lines
301 B
Text
var path = require('path');
|
|
|
|
module.exports = {
|
|
'config': path.resolve('config.json'),
|
|
'migrations-path': path.resolve('lib', 'migrations'),
|
|
'models-path': path.resolve('lib', 'models'),
|
|
'url': 'postgres://__DB_USER__:__DB_PASS__@localhost:5432/__DB_NAME__'
|
|
}
|