Skip to content

Instantly share code, notes, and snippets.

@thenriquedb
Created March 3, 2020 13:14
Show Gist options
  • Save thenriquedb/17283e7e6fe5b7879b905ea1d4f2cf53 to your computer and use it in GitHub Desktop.
Save thenriquedb/17283e7e6fe5b7879b905ea1d4f2cf53 to your computer and use it in GitHub Desktop.
Sequelize database configs
module.exports = {
dialect: 'postgres',
host: 'localhost',
username: 'user',
password: 'password',
database: 'database',
define: {
timestamps: true,
underscored: true,
underscoredAll: true,
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment