This repository has been archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
55 lines (54 loc) · 1.74 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
{
"name": "twitterwall",
"description": ".concat() twitterwall",
"repository": "https://github.com/conc-at/twitterwall",
"logo": "https://rawgit.com/conc-at/twitterwall/master/app/images/concat.svg",
"success_url": "/",
"keywords": ["twitterwall", "realtime", "conference"],
"env": {
"TITLE": {
"description": "The title of your twitterwall"
},
"HASHTAG": {
"description": "The main hashtag you want to encourage people to tweet with"
},
"HASHTAGS": {
"description": "A comma seperated list of hashtags you want to display"
},
"USERS": {
"description": "A comma seperated list of users whose tweets you want to display",
"value": ""
},
"ACCESS_TOKEN": {
"description": "Go to https://apps.twitter.com/ an get yourself some tokens"
},
"ACCESS_TOKEN_SECRET": {
"description": "See ACCESS_TOKEN"
},
"CONSUMER_KEY": {
"description": "See ACCESS_TOKEN"
},
"CONSUMER_SECRET": {
"description": "See ACCESS_TOKEN"
},
"LANYRD_YEAR": {
"description": "Go to your lanyrd event page and enter the year that is in the URL"
},
"LANYRD_ID": {
"description": "Go to your lanyrd event page and enter the event name/id that is in the URL"
},
"ADMIN_USER": {
"description": "A username for the admin API used by https://github.com/conc-at/twitterwall-cli",
"value": "admin",
"required": false
},
"ADMIN_PASSWORD": {
"description": "A password for the admin API used by https://github.com/conc-at/twitterwall-cli",
"required": false
},
"BLOCKED_USERS": {
"description": "A comma seperated list of users you want to block from the wall",
"required": false
}
}
}