-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
65 lines (65 loc) · 1.99 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jinora",
"description": "jinora is a public chat application for a slack team that lets anonymous users talk to the entire team.",
"keywords": [
"jinora",
"slack",
"anonymous",
"proxy",
"webhook",
"public"
],
"website": "https://github.com/captn3m0/jinora",
"repository": "https://github.com/captn3m0/jinora",
"logo": "https://i.imgur.com/WNRjxyN.jpg",
"success_url": "/",
"env": {
"ORGANIZATION_NAME": {
"description": "A name of the organization which will be displayed in the webpage",
"required": false
},
"SESSION_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies",
"generator": "secret"
},
"OUTGOING_TOKEN": {
"description": "Outgoing service token from Slack",
"required": true
},
"INCOMING_HOOK_URL": {
"description": "Incoming hook url from Slack",
"required": true
},
"API_TOKEN": {
"description": "Generate one for your team at api.slack.com/web",
"required": true
},
"BUFFER_SIZE": {
"description": "Number of messages to keep in memory",
"required": true,
"value": "500"
},
"SLACK_CHANNEL": {
"description": "Name of public channel in slack",
"required": true,
"value": "public"
},
"BASE_URL": {
"description": "Base url of the deployed application",
"required": false,
"value": "https://jinora.herokuapp.com"
},
"ADMIN_NICK": {
"description": "How to display the name of an admin. full for the full name, nick for the nickname (default)",
"required": false
},
"HIDE_ADMIN_NAMES": {
"description": "Whether or not to display the names of the admins in the sidebar (if the variable has a value, then they are hidden)",
"required": false
},
"MEMBER_JOIN_NOTIFY": {
"description": "Whether or not to notify admins of members joining. Values can be on and off (default)",
"required": false
}
}
}