7 lines
177 B
Text
7 lines
177 B
Text
|
|
const path = require('path');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
config: path.resolve('src', 'database', 'config.js'),
|
||
|
|
'migrations-path': path.resolve('src', 'database', 'migrations'),
|
||
|
|
};
|