-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
36 lines (36 loc) · 1.05 KB
/
app.json
File metadata and controls
36 lines (36 loc) · 1.05 KB
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
{
"name": "GitHub Milestones ICS Feed",
"description": "A Heroku app to get an iCalendar feed of your GitHub Milestones.",
"keywords": [
"GitHub",
"Milestones",
"Calendar",
"Productivity"
],
"website": "https://github.com/myles/github-milestones-ics",
"repository": "https://github.com/myles/github-milestones-ics",
"sucess_url": "/login",
"env": {
"AUTH_USERNAME": {
"description": "The username to authenticate the ICS feed.",
"required": "true"
},
"AUTH_PASSWORD": {
"description": "The username to authenticate the ICS feed.",
"required": "true",
"generator": "secret"
},
"GITHUB_USERNAME": {
"description": "The GitHub user you want to get the milestone data from."
},
"GITHUB_ORGS": {
"description": "The GitHub orgs you want to get the milestone data from (multiple orgs sperated by a comma)."
},
"GITHUB_CLIENT_ID": {
"description": "Your GitHub Client ID"
},
"GITHUB_CLIENT_SECRET": {
"description": "Your GitHub Client Secret"
}
}
}