set up data property

This commit is contained in:
2024-11-14 13:05:18 +01:00
parent 22c0a8d916
commit ec1634699c
3 changed files with 12 additions and 0 deletions

View File

@@ -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.

View File

@@ -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."
} }
] ]
} }

View File

@@ -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 ###