You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
263 B
Plaintext
8 lines
263 B
Plaintext
6 years ago
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
'config': path.resolve('config', 'config.json'),
|
||
|
'models-path': path.resolve('brain', 'models'),
|
||
|
'seeders-path': path.resolve('config', 'seeders'),
|
||
|
'migrations-path': path.resolve('config', 'migrations')
|
||
|
}
|