2017-11-07 19:57:31 +01:00
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
module.exports = {
|
2018-03-13 03:26:03 +01:00
|
|
|
'config': path.resolve('devConfig', 'sequelizeCliConfig.js'),
|
2018-07-27 00:32:33 +02:00
|
|
|
'models-path': path.resolve('server', 'models'),
|
|
|
|
'seeders-path': path.resolve('server', 'seeders'),
|
|
|
|
'migrations-path': path.resolve('server', 'migrations')
|
2018-03-13 03:26:03 +01:00
|
|
|
}
|