-
Notifications
You must be signed in to change notification settings - Fork 145
/
app.json
54 lines (54 loc) · 1.39 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
51
52
53
54
{
"name": "Darkwire",
"description": "End-to-end encrypted web chat",
"keywords": [
"cryptography",
"chat",
"privacy"
],
"website": "https://darkwire.io",
"repository": "https://github.com/darkwire/darkwire.io",
"env": {
"HEROKU_APP_NAME": {
"required": false
},
"HEROKU_PARENT_APP_NAME": {
"required": false
},
"MAILGUN_API_KEY": {
"description": "Mailgun API Key (only required for abuse reporting)",
"required": false
},
"ABUSE_TO_EMAIL_ADDRESS": {
"description": "Where to send abuse reports (only required for abuse reporting)",
"required": false
},
"MAILGUN_DOMAIN": {
"description": "Mailgun domain (only required for abuse reporting)",
"required": false
},
"ABUSE_FROM_EMAIL_ADDRESS": {
"description": "From address on abuse emails (only required for abuse reporting)",
"required": false
},
"API_HOST": {
"description": "Example: 'api.your-darkwire-api.com'",
"required": false
},
"API_PROTOCOL": {
"description": "Example: 'https'",
"required": false,
"value": "https"
},
"API_PORT": {
"description": "Example: 443",
"required": false,
"value": "443"
},
"SITE_URL": {
"description": "Full URL of site. Example: https://darkwire.io",
"required": false
}
},
"image": "heroku/nodejs"
}