Billmike/More-Recipes

View on GitHub
server/config/config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  development: {
    username: 'postgres',
    password: 'rocketmail',
    database: 'more_recipes',
    host: '127.0.0.1',
    dialect: 'postgres'
  },
  test: {
    username: 'postgres',
    password: '',
    database: 'recipes_testing_db',
    host: '127.0.0.1',
    dialect: 'postgres'
  },
  production: {
    use_env_variable: 'DATABASE_URL'
  }
};