Skip to content

Commit 63ccb94

Browse files
author
lenny
committed
refactor: Clean up TOML quotes and add LF MD files
Signed-off-by: lenny <[email protected]>
1 parent 042dfbc commit 63ccb94

File tree

3 files changed

+60
-43
lines changed

3 files changed

+60
-43
lines changed

GOVERNANCE.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Governance
2+
3+
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:
4+
5+
- [EdgeX Technical Steering Committee](https://wiki.edgexfoundry.org/pages/viewpage.action?pageId=329436)
6+
- [Contributor's Guide](https://wiki.edgexfoundry.org/display/FA/Contributor%27s+Guide)
7+
- [Contributor's Process](https://wiki.edgexfoundry.org/display/FA/Contributor%27s+Process)
8+
- [Technical Work](https://wiki.edgexfoundry.org/display/FA/Technical+Work+in+the+EdgeX+Foundry+Project)
9+
- [Contributors, Committers & Maintainers](https://wiki.edgexfoundry.org/pages/viewpage.action?pageId=21823860)

OWNERS.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Repository Owners
2+
3+
This repository is managed by the EdgeX App Service Working Group. As such, the **App Service Working Group** chairman is considered the "owner" of the repository and approves all committers of the repository.
4+
5+
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 App Service Working Group chair.
6+
7+
For a complete list of current committers see: https://github.com/orgs/edgexfoundry/teams/app-functions-sdk-go-committers/members.
8+

app-service-template/res/configuration.toml

+43-43
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# TODO: Go here for detailed information on Application Service configuation:
22
# https://docs.edgexfoundry.org/1.3/microservices/application/GeneralAppServiceConfig/
33
[Writable]
4-
LogLevel = 'INFO'
4+
LogLevel = "INFO"
55

66
[Writable.StoreAndForward]
77
Enabled = false
8-
RetryInterval = '5m'
8+
RetryInterval = "5m"
99
MaxRetryCount = 10
1010

1111
[Writable.InsecureSecrets]
@@ -23,29 +23,29 @@ LogLevel = 'INFO'
2323

2424

2525
[Service]
26-
HealthCheckInterval = '10s'
27-
Host = 'localhost'
26+
HealthCheckInterval = "10s"
27+
Host = "localhost"
2828
# TODO: set this port appropriately,
2929
# App service use port assigments 597xx with lower range 00-39 reserved for
3030
# app-service-configurable profiles/instances, Rules Engine and examples
3131
Port = 59740
32-
ServerBindAddr = '' # Leave blank so default to Host value unless different value is needed.
33-
StartupMsg = 'new-app-service Application Service has started'
32+
ServerBindAddr = "" # Leave blank so default to Host value unless different value is needed.
33+
StartupMsg = "new-app-service Application Service has started"
3434
MaxResultCount = 0 # Not curently used by App Services.
3535
MaxRequestSize = 0 # Not curently used by App Services.
36-
RequestTimeout = '5s'
36+
RequestTimeout = "5s"
3737

3838
# TODO: Remove section if not using HTTPS Webserver. Default protocol is HTTP if section is empty
3939
[HttpServer]
40-
Protocol = 'http'
41-
SecretName = 'https'
42-
HTTPSCertName = 'cert'
43-
HTTPSKeyName = 'key'
40+
Protocol = "http"
41+
SecretName = "https"
42+
HTTPSCertName = "cert"
43+
HTTPSKeyName = "key"
4444

4545
[Registry]
46-
Host = 'localhost'
46+
Host = "localhost"
4747
Port = 8500
48-
Type = 'consul'
48+
Type = "consul"
4949

5050
[Database]
5151
Type = "redisdb"
@@ -59,71 +59,71 @@ Timeout = "30s"
5959
# service in secure mode.
6060
# For more deatils about SecretStore: https://docs.edgexfoundry.org/1.3/microservices/security/Ch-SecretStore/
6161
[SecretStore]
62-
Type = 'vault'
63-
Host = 'localhost'
62+
Type = "vault"
63+
Host = "localhost"
6464
Port = 8200
65-
Path = 'appservice/'
66-
Protocol = 'http'
67-
RootCaCertPath = ''
68-
ServerName = ''
69-
TokenFile = '/tmp/edgex/secrets/new-app-service/secrets-token.json'
65+
Path = "appservice/"
66+
Protocol = "http"
67+
RootCaCertPath = ""
68+
ServerName = ""
69+
TokenFile = "/tmp/edgex/secrets/new-app-service/secrets-token.json"
7070
[SecretStore.Authentication]
71-
AuthType = 'X-Vault-Token'
71+
AuthType = "X-Vault-Token"
7272

7373
[Clients]
7474
[Clients.core-data]
75-
Protocol = 'http'
76-
Host = 'localhost'
75+
Protocol = "http"
76+
Host = "localhost"
7777
Port = 59880
7878

7979
[Clients.core-metadata]
80-
Protocol = 'http'
81-
Host = 'localhost'
80+
Protocol = "http"
81+
Host = "localhost"
8282
Port = 59881
8383

8484
[Clients.core-command]
85-
Protocol = 'http'
86-
Host = 'localhost'
85+
Protocol = "http"
86+
Host = "localhost"
8787
Port = 59882
8888

8989
[Clients.support-notifications]
90-
Protocol = 'http'
91-
Host = 'localhost'
90+
Protocol = "http"
91+
Host = "localhost"
9292
Port = 59860
9393

9494
[Trigger]
9595
Type="edgex-messagebus"
9696
[Trigger.EdgexMessageBus]
97-
Type = 'redis'
97+
Type = "redis"
9898
[Trigger.EdgexMessageBus.SubscribeHost]
99-
Host = 'localhost'
99+
Host = "localhost"
100100
Port = 6379
101-
Protocol = 'redis'
101+
Protocol = "redis"
102102
SubscribeTopics="edgex/events/#"
103103
[Trigger.EdgexMessageBus.PublishHost] # TODO: Remove if service is NOT publishing back to the message bus
104-
Host = 'localhost'
104+
Host = "localhost"
105105
Port = 6379
106-
Protocol = 'redis'
106+
Protocol = "redis"
107107
PublishTopic="event-xml"
108108
[Trigger.EdgexMessageBus.Optional]
109-
authmode = 'usernamepassword' # requied for redis messagebus (secure or insecure).
110-
secretname = 'redisdb'
109+
authmode = "usernamepassword" # requied for redis messagebus (secure or insecure).
110+
secretname = "redisdb"
111111

112112
# TODO: If using mqtt messagebus, Uncomment this section and remove above [Trigger] section,
113113
# Otherwise remove this commented out block
114114
#[Trigger]
115115
#Type="edgex-messagebus"
116116
# [Trigger.EdgexMessageBus]
117-
# Type = 'mqtt'
117+
# Type = "mqtt"
118118
# [Trigger.EdgexMessageBus.SubscribeHost]
119-
# Host = 'localhost'
119+
# Host = "localhost"
120120
# Port = 1883
121-
# Protocol = 'tcp'
121+
# Protocol = "tcp"
122122
# SubscribeTopics="events, edgex/events/#"
123123
# [Trigger.EdgexMessageBus.PublishHost] # TODO: Remove if service is NOT publishing back to the message bus
124-
# Host = 'localhost'
124+
# Host = "localhost"
125125
# Port = 1883
126-
# Protocol = 'tcp'
126+
# Protocol = "tcp"
127127
# PublishTopic="event-xml"
128128
# [Trigger.EdgexMessageBus.Optional]
129129
# ClientId ="new-app-service"
@@ -133,8 +133,8 @@ Type="edgex-messagebus"
133133
# AutoReconnect = "true"
134134
# ConnectTimeout = "30" # Seconds
135135
# SkipCertVerify = "false"
136-
# authmode = 'none' # change to 'usernamepassword', 'clientcert', or 'cacert' for secure MQTT messagebus.
137-
# secretname = 'mqtt-bus'
136+
# authmode = "none" # change to "usernamepassword", "clientcert", or "cacert" for secure MQTT messagebus.
137+
# secretname = "mqtt-bus"
138138

139139
# TODO: Add custom settings needed by your app service or remove if you don't have any settings.
140140
# This can be any Key/Value pair you need.

0 commit comments

Comments
 (0)