mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-06-27 16:00:04 +08:00
ebab3b60a8
Fixed seed/initial_tasks data which created tasks in a non-sequential order (tested on Postgres) Added production-like example configuration
8 lines
177 B
JavaScript
8 lines
177 B
JavaScript
var Sequelize = require('sequelize');
|
|
|
|
module.exports = {
|
|
configure: function(db) {
|
|
return new Sequelize(db.database, db.username, db.password, db.options);
|
|
}
|
|
}
|