Created
March 3, 2020 13:14
-
-
Save thenriquedb/17283e7e6fe5b7879b905ea1d4f2cf53 to your computer and use it in GitHub Desktop.
Sequelize database configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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