-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
42 lines (42 loc) · 1.03 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
40
41
42
{
"name": "oc-registry",
"description": "A barebone OpenComponents registry",
"repository": "https://github.com/opencomponents/starter-kit",
"logo": "https://avatars2.githubusercontent.com/u/28356951?v=4&s=200",
"keywords": [
"opencomponents",
"registry",
"microfrontends",
"node"
],
"env": {
"BASEURL": {
"description": "The base url of the registry, ie: https://your-app-name.herokuapp.com",
"value": ""
},
"S3_KEY": {
"description": "Your AWS S3 Key",
"value": ""
},
"S3_SECRET": {
"description": "Your AWS S3 Secret",
"value": ""
},
"S3_REGION": {
"description": "Your AWS S3 Region",
"value": ""
},
"S3_BUCKET": {
"description": "Your AWS Bucket Name",
"value": ""
},
"PUBLISH_USERNAME": {
"description": "The username needed to publish to the registry",
"value": ""
},
"PUBLISH_PASSWORD": {
"description": "The password needed to publish to the registry",
"value": ""
}
}
}