Skip to content

Instantly share code, notes, and snippets.

@samratshaw
Created July 30, 2018 09:47
Show Gist options
  • Save samratshaw/58fc7a730ffa652f06474ef951388d71 to your computer and use it in GitHub Desktop.
Save samratshaw/58fc7a730ffa652f06474ef951388d71 to your computer and use it in GitHub Desktop.
Medium: Sequelize configuration
const fs = require('fs');
module.exports = {
development: {
url: 'postgres://postgres@localhost:5432/devopsjourney',
dialect: 'postgres',
operatorsAliases: false,
},
production: {
url: process.env.DB_URL,
dialect: 'postgres',
operatorsAliases: false,
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment