-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
26 lines (26 loc) · 986 Bytes
/
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
{
"name": "TeCOS-Hacktoberfest-Leaderboard",
"description": "Make the hacktoberfest a competition with a leaderboard",
"keywords": ["TeCOS", "hacktoberfest", "leaderboard", "open source"],
"repository": "https://github.com/tecos-nitt/Tecos-Hacktoberfest-Leaderboard",
"success_url": "/",
"env": {
"GH_TOKEN": {
"description": "The github token used to authenticate to github API",
"required": false
},
"EVENT_DATE": {
"description": "The date criteria used to fetch data from github, in the github search format. See https://help.github.com/articles/understanding-the-search-syntax/#query-for-dates",
"value": ">=2005"
},
"PARTICIPANTS_FILE": {
"description": "File path for the list of participants",
"required": true
},
"OBJECTIVE": {
"description": "Number of pull requests to make in order to complete the challenge",
"value": "4",
"required": false
}
}
}