19 lines
507 B
JavaScript
19 lines
507 B
JavaScript
module.exports = {
|
|
development: {
|
|
username: 'docker',
|
|
password: 'docker',
|
|
database: 'CrmIntegration',
|
|
port: '5431',
|
|
dialect: 'postgres',
|
|
logging: parseInt(process.env.SEQUELIZE_LOGGING) ? console.log : false
|
|
},
|
|
test: {
|
|
"use_env_variable": 'DATABASE_URL',
|
|
logging: parseInt(process.env.SEQUELIZE_LOGGING) ? console.log : false
|
|
},
|
|
production: {
|
|
"use_env_variable": 'DATABASE_URL',
|
|
logging: parseInt(process.env.SEQUELIZE_LOGGING) ? console.log : false
|
|
}
|
|
};
|