mirror of
https://github.com/luzifer-docker/codimd.git
synced 2024-11-08 14:20:11 +00:00
8 lines
264 B
Text
8 lines
264 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': 'sqlite:///data/db.sqlite'
|
|
}
|