Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Version

Code Block
languagejs
{
 	"profile": {
    		//free object to add whatever you see fit
  	},
  	"lastSync": :{
    		"ts": "2342343423",
    		"branch": "branch1", // or tag (only one is allowed)
    		"tag": "tag1" // or branch (only one is allowed)
    	},
    	"tags": ["tag1"], // or branches (only one is allowed)
    	"branches: ["branch1"], // or tags (only one is allowed)
    	"soa": "stringified soa.json",
    	"apis": {
      		//object of apis schema
    	},
    	"swagger" : "stringified swagger",
    	"documentation": {
      		"readme": "stringified readme.md",
      		"release": "stringified release.md"
    	},
    	"extKeyRequired": true || false,
    	"oauth": true || false,
    	"provision_ACL": true || false,
    	"tenant_Profile": true || false,
    	"urac": true || false,
    	"urac_ACL": true || false,
    	"urac_Config": true || false,
    	"urac_GroupConfig": true || false,
    	"urac_Profile": true || false,
    	"jobs": {
      		"job1": {}
    	},
    	"interConnect": {
      		"serviceName": {}
    	}
  }
};

Configuration:

Code Block
languagejs
{
  "port" : 4005,
  "group": "groupname",
  "requestTimeout": 5,
  "requestTimeoutRenewal": 10,
  "subType": "subType",
  "maintenance": {
     "port": {
      "type": "inherit"
    },
    "readiness": "/heartbeat"
  }
}

...