-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
35 lines (35 loc) · 1.04 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
{
"name": "my-self-hosted-unpkg",
"env": {
"NPM_REGISTRY": {
"description": "You can provide your private repository here",
"value": "https://registry.npmjs.com",
"required": true
},
"NPM_TOKEN": {
"description": "Only required if you want to allow access to your private packages",
"value": " ",
"required": false
},
"REDIS_HOST": {
"description": "Redis is used to temporarily store packages to reduce load on the registry",
"value": " ",
"required": false
},
"REDIS_PORT": {
"description": "Redis is used to temporarily store packages to reduce load on the registry",
"value": "6379",
"required": false
},
"REDIS_PASSWORD": {
"description": "Redis is used to temporarily store packages to reduce load on the registry",
"value": " ",
"required": false
},
"CACHE_PREFIX": {
"description": "Redis is used to temporarily store packages to reduce load on the registry",
"value": "unpkg",
"required": true
}
}
}