8 lines
288 B
Text
8 lines
288 B
Text
const path = require('path');
|
|
|
|
module.exports = {
|
|
'config': path.resolve('backend', 'config', 'database.js'),
|
|
'models-path': path.resolve('backend', 'models'),
|
|
'seeders-path': path.resolve('backend', 'seeders'),
|
|
'migrations-path': path.resolve('backend', 'migrations')
|
|
};
|