uplink/.sequelizerc

9 lines
179 B
Plaintext
Raw Permalink Normal View History

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