-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
39 lines (39 loc) · 1.22 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
{
"name": "Anticensority PAC-Script Generator",
"descripton": "Generates PAC-script based on dump.csv from zapret-info/z-i repo.",
"keywords": [
"PAC-script",
"generator",
"anticensority"
],
"logo": "https://avatars2.githubusercontent.com/u/19631280",
"repository": "https://github.com/anticensority/pac-script-generator/tree/golang",
"template": "https://github.com/anticensority/pac-script-generator/tree/golang",
"website": "https://github.com/anticensority/pac-script-generator",
"env": {
"GH_REPO": {
"required": true,
"description": "Repo to which generated PAC-script will be uploaded. Example: anticensority/generated-pac-scripts.",
"value": "your_github_name/your_repo"
},
"GH_TOKEN": {
"required": true,
"description": "OAuth token that gives write access to GH_REPO (scope 'repo'). It may be generated by GitHub if you provide client id and secret, try following https://github.com/lelylan/simple-oauth2/blob/master/example/index.js"
}
},
"environments": {
"test": {
"env": {
"GH_REPO": "anticensority/for-testing"
}
}
},
"addons": [
"scheduler:standard"
],
"formation": {
"web": {
"quantity": 0
}
}
}