From 535f975c4624150f9cd57cde1befa9b07e3236bf Mon Sep 17 00:00:00 2001 From: jpwhitemn Date: Wed, 11 Aug 2021 14:22:14 -0500 Subject: [PATCH] fix: update all TOML to use quote and not single-quote also added governance.md and owner.md files for LF Edge Signed-off-by: jpwhitemn --- GOVERNANCE.md | 9 +++++++++ OWNERS.md | 8 ++++++++ cmd/res/configuration.toml | 40 +++++++++++++++++++------------------- 3 files changed, 37 insertions(+), 20 deletions(-) create mode 100644 GOVERNANCE.md create mode 100644 OWNERS.md diff --git a/GOVERNANCE.md b/GOVERNANCE.md new file mode 100644 index 00000000..b0bd526f --- /dev/null +++ b/GOVERNANCE.md @@ -0,0 +1,9 @@ +# Governance + +Project governance as well as policies, procedures and instructions for contributing to EdgeX Foundry can be found on our Wiki site at the following locations: + +- [EdgeX Technical Steering Committee](https://wiki.edgexfoundry.org/pages/viewpage.action?pageId=329436) +- [Contributor's Guide](https://wiki.edgexfoundry.org/display/FA/Contributor%27s+Guide) +- [Contributor's Process](https://wiki.edgexfoundry.org/display/FA/Contributor%27s+Process) +- [Technical Work](https://wiki.edgexfoundry.org/display/FA/Technical+Work+in+the+EdgeX+Foundry+Project) +- [Contributors, Committers & Maintainers](https://wiki.edgexfoundry.org/pages/viewpage.action?pageId=21823860) \ No newline at end of file diff --git a/OWNERS.md b/OWNERS.md new file mode 100644 index 00000000..3df2ba53 --- /dev/null +++ b/OWNERS.md @@ -0,0 +1,8 @@ +# Repository Owners + +This repository is managed by the EdgeX Device Services Working Group. As such, the **Device Services Working Group** chairman is considered the "owner" of the repository and approves all committers of the repository. + +See the [project Wiki TSC page](https://wiki.edgexfoundry.org/pages/viewpage.action?pageId=329436#TechnicalSteeringCommittee(TSC)-WorkingGroups) for information on the current EdgeX TSC and who occupies the role of Device Service Working Group chair. + +For a complete list of current committers see: https://github.com/orgs/edgexfoundry/teams/device-rfid-llrp-go-committers/members. + diff --git a/cmd/res/configuration.toml b/cmd/res/configuration.toml index a792a9af..2d90ea15 100644 --- a/cmd/res/configuration.toml +++ b/cmd/res/configuration.toml @@ -1,56 +1,56 @@ [Writable] -LogLevel = 'INFO' +LogLevel = "INFO" [Service] -Host = 'localhost' +Host = "localhost" Port = 49989 -Protocol = 'http' -StartupMsg = 'device llrp started' +Protocol = "http" +StartupMsg = "device llrp started" Timeout = 5000 ConnectRetries = 10 -CheckInterval = '10s' +CheckInterval = "10s" Labels = [] EnableAsyncReadings = true AsyncBufferSize = 16 [Registry] -Host = 'localhost' +Host = "localhost" Port = 8500 -Type = 'consul' +Type = "consul" [Logging] EnableRemote = false -File = '' +File = "" [Clients] [Clients.Data] - Protocol = 'http' - Host = 'localhost' + Protocol = "http" + Host = "localhost" Port = 48080 [Clients.Metadata] - Protocol = 'http' - Host = 'localhost' + Protocol = "http" + Host = "localhost" Port = 48081 [Clients.Logging] - Protocol = 'http' - Host = 'localhost' + Protocol = "http" + Host = "localhost" Port = 48061 [Device] DataTransform = false - InitCmd = '' - InitCmdArgs = '' + InitCmd = "" + InitCmdArgs = "" MaxCmdOps = 128 MaxCmdValueLen = 256 - RemoveCmd = '' - RemoveCmdArgs = '' - ProfilesDir = './res' + RemoveCmd = "" + RemoveCmdArgs = "" + ProfilesDir = "./res" UpdateLastConnected = false [Device.Discovery] Enabled = true - Interval = '1h' + Interval = "1h" [Driver] # NOTE: Items in the Driver section MUST be in quotes, even for numbers due to EdgeX limitation