integration with migrations/seeds/etc

This commit is contained in:
Arjun Patel
2019-01-21 22:49:54 -08:00
parent 33afb962ae
commit 6e6eba3de4
9 changed files with 267 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
const path = require('path');
module.exports = {
'config': path.resolve('./app/config', 'config.js'),
'models-path': path.resolve('./app', 'models'),
'seeders-path': path.resolve('./app', './seeders'),
'migrations-path': path.resolve('./app', './migrations')
}