This repository has been archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup_config.js
74 lines (73 loc) · 1.88 KB
/
setup_config.js
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
module.exports.config = {
region: "us-east-1",
serviceName: "uportlandia",
ssmParam:{
issuers: "/uportlandia/${opt:stage}/issuers"
},
s3Bucket: {
stage: "cleverland-stage",
prod: "cleverland-prod"
},
domain: {
stage: "uportlandia.uport.space",
prod: "uportlandia.uport.me"
},
cors: true
};
module.exports.ISSUER_PROFILES = [{
id: "CITY_ID",
name: "The City of uPortlandia",
url: {
stage: "https://uportlandia.uport.space/city",
prod: "https://uportlandia.uport.me/city"
},
profileImage: "src/images/city-logo.png"
}, {
id: "DIPLOMA",
name: "The University of uPortlandia",
url: {
stage: "https://uportlandia.uport.space/university",
prod: "https://uportlandia.uport.me/university"
},
profileImage: "src/images/university-logo.png"
}, {
id: "COMPANY",
name: "Dream Job LLC.",
url: {
stage: "https://uportlandia.uport.space/company",
prod: "https://uportlandia.uport.me/company"
},
profileImage: "src/images/company-logo.png"
}, {
id: "INSURANCE",
name: "People Care LLC.",
url: {
stage: "https://uportlandia.uport.space/insurance",
prod: "https://uportlandia.uport.me/insurance"
},
profileImage: "src/images/insurance-logo.png"
}, {
id: "PHARMACY",
name: "Your Health Medical Center",
url: {
stage: "https://uportlandia.uport.space/pharmacy",
prod: "https://uportlandia.uport.me/pharmacy"
},
profileImage: "src/images/pharmacy-logo.png"
}, {
id: "TRANSPORT",
name: "uPortlandia City Transit",
url: {
stage: "https://uportlandia.uport.space/transport",
prod: "https://uportlandia.uport.me/transport"
},
profileImage: "src/images/transport-logo.png"
}, {
id: "MUSEUM",
name: "uPortlandia Museum of Modern Art",
url: {
stage: "https://uportlandia.uport.space/museum",
prod: "https://uportlandia.uport.me/museum"
},
profileImage: "src/images/museum-logo.png"
}];