Last active
July 12, 2019 20:12
-
-
Save giovanniantonaccio/82b88b5af14d1b23a088deac94fee5a9 to your computer and use it in GitHub Desktop.
Configure database credentials
This file contains 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: 'postgres', | |
password: 'docker', | |
database: 'gobarber', | |
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