Files
HackFlowy/sample.config.js
T
DC* 6faeab4b0b Initial Sequelize integration.
Added orm module to abstract Sequelize usage to some degree. ORM module
handles the configuration and instantiation of Sequelize. Models are
defined and instantiated from models/*

Tested only against SQLite.

Faily new to nodejs so I probably messed up with something.
2014-01-12 01:47:34 -03:00

12 lines
177 B
JavaScript

var config = {
db: {
user : '',
password : '',
name : '',
options : {
dialect: 'sqlite'
}
}
};
module.exports = config;