module.exports = {
  development: {
    database: "YOUR_DATABASE_NAME_development",
    host: "localhost"
  },
  test: {
    database: "YOUR_DATABASE_NAME_test",
    host: "localhost"
  },
  production: {
    use_env_variable: "MONGO_URL"
  }
};