Origin System Tools Configuration
The OriginSystemTools property in MasterConfig.json allows you to define values for environment variables that are used by various tools when running on the system of record.
Origin System Tools Configuration
{
"OriginSystemTools": {
"EnvironmentVariables": [
{
"Name": "SOME_ENVVAR",
"Value": "C:\SOME\PATH"
},
{
"Name": "OTHER_ENVVAR",
"Value": "4"
},
]
}
}
Configuration Properties
| Property | Type | Description |
|---|---|---|
| EnvironmentVariables | Object | Each environment variable includes Name and Value objects, both of which are string values. |
Environment Variable
| Property | Type | Description |
|---|---|---|
| Name | String | The name of the environment variable to be created. |
| Value | String | The value of the environment variable. |