-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
50 lines (50 loc) · 1.4 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
43
44
45
46
47
48
49
50
{
"name": "Bethel Platform",
"appName": "bethel",
"description": "The Bethel platform to power the digital church..",
"repository": "https://github.com/mybethel/my.bethel.io",
"env": {
"AWS_KEY": {
"description": "Amazon Web Services: API key.",
"required": true,
"local": "aws.accessKeyId"
},
"AWS_SECRET": {
"description": "Amazon Web Services: API secret.",
"required": true,
"local": "aws.secretAccessKey"
},
"DB_MONGO": {
"description": "Compose: Mongo database connection string.",
"required": true
},
"KEEN_READ": {
"description": "Keen: Read-only API key for analytic access.",
"required": true,
"local": "keen.writeKey"
},
"MAILGUN_API_KEY": {
"description": "Mailgun: API key for sending of mail.",
"required": true,
"local": "mailgun.key"
},
"MAILGUN_DOMAIN": {
"description": "Mailgun: domain for sending of mail.",
"required": true,
"local": "mailgun.domain"
},
"REDIS_PASS": {
"description": "Redis: Password for session and socket storage.",
"required": true
},
"VIMEO": {
"description": "Vimeo: API key for syncing of video feeds.",
"required": true
},
"ZENCODER": {
"description": "Zencoder: API key for media encoding and conversion.",
"required": true,
"local": "zencoder.key"
}
}
}