module.exports = {
  prod: {
    http: {
      port: 3010,
      host: 'localhost'
    },
    mysql: {
      connectionLimit: 30,
      host: 'localhost',
      username: 'nowruzgan',
      password: 'a74YPN5ECqqPqfaC',
      database: 'cronus-log'
    },
  },
  dev: {
    http: {
      port: 3000,
      host: 'localhost'
    },
    mysql: {
      connectionLimit: 10,
      host: 'localhost',
      username: 'root',
      password: 'anandashankar',
      database: 'cronus-log'
    },
  }
};