-
Notifications
You must be signed in to change notification settings - Fork 0
Repository file for the list of repositories
Alexey Nesterov edited this page Apr 9, 2025
·
2 revisions
The service_repositories_list.json
file contains all the repositories that will be used by the Management utility to check and download updates.
File format
[
{
/* User or organization */
"repositoriesOwner": "Adam-Software",
/* Repository name */
"repositoriesName": "AdamServices.FindRobot",
/* Service info file path.
* Optional. Default path /service_info.json */
"serviceFilePath": ""
},
{ /* other repository*/ },
{ /* other repository*/ }
]
The link to this file is specified in the Managment appsettings.json file.
...
"UpdateServiceSettings": {
"ServicesRepositories": [
{
"repositoriesOwner": "Adam-Software",
"repositoriesName": "AdamServices.Utilities.Managment",
/* path to the list of service repositories */
"serviceFilePath": "service_repositories_list.json"
},
/* other repositories with repositories list file */
]
}
...