mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
9 lines
180 B
Text
9 lines
180 B
Text
|
#!/usr/bin/env node
|
||
|
|
||
|
var config = require('./core/server/config');
|
||
|
|
||
|
module.exports = {
|
||
|
database: config.get('database'),
|
||
|
migrationPath: config.get('paths:migrationPath')
|
||
|
}
|