forked from conc-at/twitterwall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
66 lines (64 loc) · 2.06 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
66
{
"name": "twitterwall",
"description": "INFORMATIK 2017 twitterwall",
"repository": "https://github.com/andrelanger/twitterwall",
"logo": "https://medien.informatik.tu-chemnitz.de/informatik2017/files/2016/06/GI-Logo-text-2012_deutsch-e1466163821786.png",
"success_url": "/",
"keywords": ["twitterwall", "realtime", "conference"],
"env": {
"TITLE": {
"description": "The title of your twitterwall",
"value": "INFORMATIK 2017"
},
"HASHTAG": {
"description": "The main hashtag you want to encourage people to tweet with",
"value": "#informatik17,#informatik2017"
},
"HASHTAGS": {
"description": "A comma seperated list of hashtags you want to display",
"value": "#informatik2017"
},
"USERS": {
"description": "A comma seperated list of users whose tweets you want to display",
"value": "informatik2017"
},
"ACCESS_TOKEN": {
"description": "Go to https://apps.twitter.com/ an get yourself some tokens",
"value": "XXX"
},
"ACCESS_TOKEN_SECRET": {
"description": "See ACCESS_TOKEN",
"value": "XXX"
},
"CONSUMER_KEY": {
"description": "See ACCESS_TOKEN",
"value": "XXX"
},
"CONSUMER_SECRET": {
"description": "See ACCESS_TOKEN",
"value": "XXX"
},
"LANYRD_YEAR": {
"description": "Go to your lanyrd event page and enter the year that is in the URL",
"value": "2017"
},
"LANYRD_ID": {
"description": "Go to your lanyrd event page and enter the event name/id that is in the URL",
"value": "informatik"
},
"ADMIN_USER": {
"description": "A username for the admin API used by https://github.com/conc-at/twitterwall-cli",
"value": "admin",
"required": true
},
"ADMIN_PASSWORD": {
"description": "A password for the admin API used by https://github.com/conc-at/twitterwall-cli",
"value": "XXX",
"required": true
},
"BLOCKED_USERS": {
"description": "A comma seperated list of users you want to block from the wall",
"required": false
}
}
}