-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update docs Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * update config file Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * change log level Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * update readme Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * update config file Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * update docs Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * add services commands Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * fix typo Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * align with dflts Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com>
- Loading branch information
Showing
4 changed files
with
111 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,29 @@ | ||
[server] | ||
port = "9000" | ||
File = "config.toml" | ||
|
||
[thing] | ||
id = "90f9aff0-73f6-476b-a4da-d277ab99d3ce" | ||
key = "e606945e-47bd-405f-85f3-a4c55bd069c8" | ||
[Agent] | ||
|
||
[channels] | ||
control = "3ace3fa3-aa84-4a02-b0ab-6d594268dc77" | ||
data = "0bdeea73-8de1-420c-8c4d-a4e7d6c46e3b" | ||
[Agent.channels] | ||
control = "" | ||
data = "" | ||
|
||
[edgex] | ||
url = "http://localhost:48090/api/v1/" | ||
[Agent.edgex] | ||
url = "http://localhost:48090/api/v1/" | ||
|
||
[log] | ||
level = "info" | ||
[Agent.log] | ||
level = "info" | ||
|
||
[mqtt] | ||
url = "localhost:1883" | ||
[Agent.mqtt] | ||
ca_path = "ca.crt" | ||
cert_path = "thing.crt" | ||
mtls = false | ||
password = "" | ||
priv_key_path = "thing.key" | ||
qos = 0 | ||
retain = false | ||
skip_tls_ver = false | ||
url = "localhost:1883" | ||
username = "" | ||
|
||
[Agent.server] | ||
nats_url = "localhost:4222" | ||
port = "9000" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters