forked from amussey/groupme-calendar-to-ics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
43 lines (43 loc) · 1.87 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
{
"name": "GroupMe Calendar to ICS",
"description": "Turn your GroupMe event calendar into an ICS feed (for Google Calendar, Apple Calendar, Outlook, etc.).",
"website": "https://github.com/amussey/groupme-calendar-to-ics",
"repository": "https://github.com/amussey/groupme-calendar-to-ics",
"logo": "https://raw.githubusercontent.com/amussey/groupme-calendar-to-ics/master/static/images/logo-1024.png",
"success_url": "/",
"keywords": [
"groupme",
"calendar",
"ics"
],
"env": {
"GROUPME_GROUP_ID": {
"description": "The ID for the GroupMe group. This can be found on the webapp (https://web.groupme.com) under the Settings option for your group.",
"value": ""
},
"GROUPME_API_KEY": {
"description": "A GroupMe Developer Access Token for a user in the GroupMe group.",
"value": ""
},
"CACHE_DURATION": {
"description": "The duration for which the GroupMe calendar is cached, measured in minutes. `0` will disable caching.",
"value": "60"
},
"GROUPME_CALENDAR_TIMEZONE": {
"description": "Timezone of the calendar events. See https://en.wikipedia.org/wiki/List_of_tz_database_time_zones for the list of valid timezones.",
"value": "America/Los_Angeles"
},
"GROUPME_STATIC_NAME": {
"description": "(Optional) A static name for the group. This will lock a name for the calendar, even if the group decides to change their name.",
"value": "",
"required": false
},
"GROUPME_PROXY_URL": {
"description": "(Optional) A proxy URL to provide for the calendar.ics. ",
"value": "",
"required": false
}
},
"addons": [],
"generator": "https://www.expeditedssl.com/heroku-button-maker"
}