Files
old-crm-integration/config/config.js
Senad Uka a691ab94c7 Config.js
2019-07-24 08:23:55 +02:00

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
}
};