Skip to content

Instantly share code, notes, and snippets.

@budasuyasa
Last active May 6, 2018 02:14
Show Gist options
  • Save budasuyasa/c804d3aea4de77c68d8760e00b43c07e to your computer and use it in GitHub Desktop.
Save budasuyasa/c804d3aea4de77c68d8760e00b43c07e to your computer and use it in GitHub Desktop.
medium-post-simple-rest-1
const Sequelize = require('sequelize');
const sequelize = new Sequelize('bookstore', 'root', 'passsword', {
host: 'localhost',
dialect: 'mysql',
pool: {
max: 5,
min: 0,
idle: 10000
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment