-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
32 lines (32 loc) · 884 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
27
28
29
30
31
32
{
"name": "UPM-Proxy-GitHub",
"description": "Proxy for GitHub packages and Unity Scoped Registry",
"repository": "https://github.com/codebrewery/UPM-Proxy-GitHub",
"keywords": [
"node",
"heroku"
],
"image": "heroku/nodejs",
"env": {
"SCOPE": {
"description": "The scope (owner/user) to restrict access to",
"value": "@"
},
"NODE_ENV": {
"description": "Production-mode",
"value": "production"
},
"SCOPE_TYPE": {
"description": "Either 'ORG' for organization or 'USER' for a user scoped package",
"value": "ORG"
},
"PACKAGE_SCOPE": {
"description": "Displayed on the homepage for instruction purposes",
"value": "com.myorganization.etc"
},
"CLEAR_TOKEN": {
"description": "A key used to clear the cache, useful for Github Actions",
"generator": "secret"
}
}
}