set up data property
This commit is contained in:
@@ -14,6 +14,7 @@ Classes and endpoints, to shape and to steer, Devices and sensors, their purpose
|
|||||||
| server.ssl.key-store-password | ** | HTTP Cert Pass |
|
| server.ssl.key-store-password | ** | HTTP Cert Pass |
|
||||||
| jwt.public-key | * | JWT public key |
|
| jwt.public-key | * | JWT public key |
|
||||||
| device-registry.url | * | Device Register URL |
|
| device-registry.url | * | Device Register URL |
|
||||||
|
| device-data.url | * | Device Data URL |
|
||||||
|
|
||||||
Required: * can be stored as text, and ** need to be stored as secret.
|
Required: * can be stored as text, and ** need to be stored as secret.
|
||||||
|
|
||||||
|
|||||||
@@ -29,6 +29,11 @@
|
|||||||
"name": "device-registry.url",
|
"name": "device-registry.url",
|
||||||
"type": "java.lang.String",
|
"type": "java.lang.String",
|
||||||
"description": "Url for device registry service."
|
"description": "Url for device registry service."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "device-data.url",
|
||||||
|
"type": "java.lang.String",
|
||||||
|
"description": "Url for device data service."
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,6 +33,9 @@ server:
|
|||||||
device-registry:
|
device-registry:
|
||||||
url: http://localhost:9010
|
url: http://localhost:9010
|
||||||
|
|
||||||
|
device-data:
|
||||||
|
url: http://localhost:9020
|
||||||
|
|
||||||
---
|
---
|
||||||
##########################
|
##########################
|
||||||
### Docker environment ###
|
### Docker environment ###
|
||||||
@@ -53,6 +56,9 @@ server:
|
|||||||
device-registry:
|
device-registry:
|
||||||
url: http://DeviceRegistry:8080
|
url: http://DeviceRegistry:8080
|
||||||
|
|
||||||
|
device-data:
|
||||||
|
url: http://DeviceData:8080
|
||||||
|
|
||||||
---
|
---
|
||||||
##############################
|
##############################
|
||||||
### Production environment ###
|
### Production environment ###
|
||||||
|
|||||||
Reference in New Issue
Block a user