Skip to content

Sample Local Configuration File (local.json)

Johny Georges edited this page Mar 18, 2018 · 2 revisions

Below is sample configuration file for a local environment setup. Make sure that you create this file in the config folder: config/local.json

Note: You can modify this file to include any additional property that is defined in config/config.js.

{
  "bin": {
    "protocol": "http",
    "host": "127.0.0.1",
    "port": 4000,
    "domain": "localhost",
    "proxyPort": 4001
  },

  "github": {
    "clientId": "<CLIENT_ID>",
    "clientSecret": "<CLIENT_SECRET>"
  },
  "redis": {
    "host": "127.0.0.1",
    "port": 6379
  }
}