Create example config

This commit is contained in:
Yukai Huang
2016-10-05 10:58:05 +08:00
parent ca59d86628
commit 0e63fe1fa0
3 changed files with 155 additions and 0 deletions

8
.sequelizerc.example Normal file
View File

@@ -0,0 +1,8 @@
var path = require('path');
module.exports = {
'config': path.resolve('config.json'),
'migrations-path': path.resolve('lib', 'migrations'),
'models-path': path.resolve('lib', 'models'),
'url': 'change this'
}