* Initial migration * Cleanup and create migration scripts * Introduce test suite * Fix test issues * Correct CORS issue and update paths * Update README
8 lines
No EOL
235 B
Text
8 lines
No EOL
235 B
Text
const path = require('path');
|
|
|
|
module.exports = {
|
|
'config': path.resolve('config', 'database.js'),
|
|
'models-path': path.resolve('models'),
|
|
'seeders-path': path.resolve('seeders'),
|
|
'migrations-path': path.resolve('migrations')
|
|
}; |