Skip to content

Instantly share code, notes, and snippets.

@dyarfi
Created June 19, 2020 07:14
Show Gist options
  • Select an option

  • Save dyarfi/dc016a707a4102b85e493df5a4cc13d7 to your computer and use it in GitHub Desktop.

Select an option

Save dyarfi/dc016a707a4102b85e493df5a4cc13d7 to your computer and use it in GitHub Desktop.
Sequelize config.js
"use strict";
module.exports = {
development: {
username: "root",
password: null,
database: "database_development",
host: "127.0.0.1",
dialect: "mysql",
operatorsAliases: false,
},
test: {
username: "root",
password: null,
database: "database_test",
host: "127.0.0.1",
dialect: "mysql",
operatorsAliases: false,
},
production: {
username: "root",
password: null,
database: "database_production",
host: "127.0.0.1",
dialect: "mysql",
operatorsAliases: false,
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment