mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
9 lines
180 B
Plaintext
9 lines
180 B
Plaintext
|
#!/usr/bin/env node
|
||
|
|
||
|
var config = require('./core/server/config');
|
||
|
|
||
|
module.exports = {
|
||
|
database: config.get('database'),
|
||
|
migrationPath: config.get('paths:migrationPath')
|
||
|
}
|