8 lines
231 B
Plaintext
8 lines
231 B
Plaintext
const path = require('path')
|
|
|
|
module.exports = {
|
|
'config': path.resolve('server', 'dbconfig.js'),
|
|
'migrations-path': path.resolve('server', 'migrations'),
|
|
'models-path': path.resolve('server', 'api', 'models')
|
|
}
|