Skip to content

Commit

Permalink
chore:create a .sequelizerc file to hold sequeliize path configs
Browse files Browse the repository at this point in the history
  • Loading branch information
ddouglasz committed Mar 14, 2018
1 parent 59786b9 commit dc329c8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .sequelizerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const path = require('path');

module.exports = {
"config": path.resolve('./server/config', 'config.json'),
"models-path": path.resolve('./server/models'),
"seeders-path": path.resolve('./server/seeders'),
"migrations-path": path.resolve('./server/migrations')
};

0 comments on commit dc329c8

Please sign in to comment.