API for settings management.
- Pull "mt-settings-service" docker image with a corresponding tag.
- Configure environment variables according to "Environment variables" section.
- Put secrets.json with endpoint data including the certificate:
"Kestrel": {
"EndPoints": {
"HttpsInlineCertFile": {
"Url": "https://*:5110",
"Certificate": {
"Path": "<path to .pfx file>",
"Password": "<certificate password>"
}
}
}
}
- Initialize all dependencies.
- Run.
- Clone repo to some directory.
- In MarginTrading.AssetService root create a appsettings.dev.json with settings.
- Add environment variable "SettingsUrl": "appsettings.dev.json".
- VPN to a corresponding env must be connected and all dependencies must be initialized.
- Run.
TBD
Kestrel configuration may be passed through appsettings.json, secrets or environment. All variables and value constraints are default. For instance, to set host URL the following env variable may be set:
{
"Kestrel__EndPoints__Http__Url": "http://*:5010"
}
- RESTART_ATTEMPTS_NUMBER - number of restart attempts. If not set int.MaxValue is used.
- RESTART_ATTEMPTS_INTERVAL_MS - interval between restarts in milliseconds. If not set 10000 is used.
- SettingsUrl - defines URL of remote settings or path for local settings.
Settings schema is: