Skip to content

Instantly share code, notes, and snippets.

@agustinfece
Created June 16, 2021 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agustinfece/fc9891e62aa048531ce3ab55fd607e45 to your computer and use it in GitHub Desktop.
Save agustinfece/fc9891e62aa048531ce3ab55fd607e45 to your computer and use it in GitHub Desktop.
database.js
import { Sequelize } from 'sequelize';
const sequelize = new Sequelize('loginDB', 'root', 'YOUR_PASSWORD', {
dialect: 'mysql',
host: 'localhost',
});
export default sequelize;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment