evergreen/services/.sequelizerc

9 lines
181 B
JavaScript

const path = require('path')
module.exports = {
'config': path.resolve('config', 'database.js'),
'models-path': path.resolve('src', 'models')
}
// vim: ft=javascript