-
Notifications
You must be signed in to change notification settings - Fork 5
Configuring Service Catalog
Alexandr Krylovskiy edited this page Aug 20, 2014
·
7 revisions
Service Catalog is configured using a JSON configuration file, path to which is provided to the SC via -conf flag.
The default configuration file (provided in the binary distribution) is located at
conf/service-catalog.json
{
"name": <string>,
"dnssdEnabled": <bool>,
"endpoint": <string>,
"staticDir": <string>,
"storage": <string>
}Where
-
nameis a human-readable name for the SC -
dnssdEnabledNOT IMPLEMENTED reserved to enable DNS-SD advertisement of the catalog on the network -
endpointis the bind address and port for the Service Catalog API in the formataddress:port -
staticDiris the path to the directory with static files -
storageis the storage backend. At the moment, onlymemoryis supported
The default configuration file (provided in the binary distribution) is the following:
{
"name": "Service Catalog",
"dnssdEnabled": false,
"endpoint": "0.0.0.0:8002",
"staticDir": "static",
"storage": "memory"
}About Patchwork Toolkit
Configuration
- Configuring Device Gateway
- Configuring Devices
- Configuring Device Catalog
- Configuring Service Catalog
- Configuring Services
Deployment examples
- Singleall-in-on-box
- Multiple Device Gateways with optional central Device Catalog
- Using central Service Catalog
API for Application developers
Integrating devices
- TBD...
Third-party integrations