Versions Compared

Key

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

...

Example format for AppConfig.json. Note that multiple cluster configurations can be defined in one file, however the current implementation of the SDK only recognizes the first cluster definition.

Motive Cloud

Code Block
{
	"clusters": [
		{
    	    "localizedTitle":{
				"localizations":[
					{
						"cultureCode":"en",
						"text":"Motive Preview Server"
					}
				]
			},
			"motiveCloudConfig": {
				"url": "https://preview.motivecloud.dev"
			}
		}
	]
}

Legacy

Code Block
{
	"clusters":[
		{
			"localizedTitle":{
				"localizations":[
					{
						"cultureCode":"en",
						"text":"Motive Launch Server - US"
					}
				]
			},
			"identityServerConfig":{
				"url":"https://id.storyflow.dev"
			},
			"launchServerConfig":{
				"url":"https://ls-us.storyflow.dev",
				"clientId": "abcdefg",
				"clientSecret": "a big secret"
			},
			"storyflowAppConfig":{
				"url":"https://app.storyflow.dev"
			},
			"storyflowApiConfig":{
				"url":"https://api.storyflow.dev"
			}
		}
	]
}

...