-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
42 lines (42 loc) · 1.05 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "Hull Stripe Connector",
"description": "Stores Stripe events to Hull",
"repository": "https://github.com/hull-ships/hull-stripe",
"website": "https://www.hull.io",
"success_url": "/readme",
"env": {
"SECRET" : {
"description" : "A Secret key used to sign tokens",
"generator" : "secret"
},
"LOG_LEVEL" : {
"description" : "Logging level (emerg, alert, crit, error, warning, notice, info, debug)",
"value": "info"
},
"CLIENT_ID" : {
"description" : "oAuth Client ID",
"required": true
},
"CLIENT_SECRET" : {
"description" : "oAuth Client Secret",
"required": true
},
"DATADOG_API_KEY" : {
"description" : "Datadog API Key",
"required": true
},
"DATADOG_APP_KEY" : {
"description" : "Datadog App Key",
"required": true
},
"LOGSTASH_PORT" : {
"description" : "Logstash Port",
"required": false
},
"LOGSTASH_HOST" : {
"description" : "Logstash Host",
"required": false
},
},
"scripts": {}
}