Skip to content

Instantly share code, notes, and snippets.

@aabccd021
Created April 27, 2020 23:04
Show Gist options
  • Save aabccd021/dc2f732f8447df293e07dcd9eb508e6a to your computer and use it in GitHub Desktop.
Save aabccd021/dc2f732f8447df293e07dcd9eb508e6a to your computer and use it in GitHub Desktop.
Default sequelize config
{
"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