9 lines
244 B
Plaintext
9 lines
244 B
Plaintext
const path = require('path');
|
|
|
|
module.exports = {
|
|
'config': path.resolve('config/config.js'),
|
|
'models-path': path.resolve('src/models'),
|
|
'migrations-path': path.resolve('src/migrations'),
|
|
'seeders-path': path.resolve('src/seeders'),
|
|
};
|