Skip to content

Instantly share code, notes, and snippets.

@joaotanaca
Created December 5, 2020 17:59
Show Gist options
  • Save joaotanaca/90cb4b7c79e632b43203bceb4cb7f325 to your computer and use it in GitHub Desktop.
Save joaotanaca/90cb4b7c79e632b43203bceb4cb7f325 to your computer and use it in GitHub Desktop.
const Sequelize = require("sequelize");
const {
database: { name, user, password, host, dialect },
} = require("../config/config.js");
const sequelize = new Sequelize(name, user, password, {
host,
dialect,
});
module.exports = sequelize;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment