forked from uport-project/uportlandia
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup_config.js
76 lines (75 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
75
76
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"
stage: "pensivej.github.io",
prod: "pensivej.github.io"
},
cors: true
};
module.exports.ISSUER_PROFILES = [{
id: "CITY_ID",
name: "제주도청",
url: {
stage: "https://pensivej.github.io/city",
prod: "https://pensivej.github.io/city"
},
profileImage: "src/images/jeju/jeju.png"
}, {
id: "DIPLOMA",
name: "제주대학교",
url: {
stage: "https://pensivej.github.io/university",
prod: "https://pensivej.github.io/university"
},
profileImage: "src/images/jeju/university.png"
}, {
id: "COMPANY",
name: "한라전자",
url: {
stage: "https://pensivej.github.io/company",
prod: "https://pensivej.github.io/company"
},
profileImage: "src/images/company-logo.png"
}, {
id: "INSURANCE",
name: "국민의료보험공단",
url: {
stage: "https://pensivej.github.io/insurance",
prod: "https://pensivej.github.io/insurance"
},
profileImage: "src/images/jeju/insurance.png"
}, {
id: "PHARMACY",
name: "제주한라병원 인터넷진료부",
url: {
stage: "https://pensivej.github.io/pharmacy",
prod: "https://pensivej.github.io/pharmacy"
},
profileImage: "src/images/pharmacy-logo.png"
}, {
id: "TRANSPORT",
name: "제주버스운송조합",
url: {
stage: "https://pensivej.github.io/transport",
prod: "https://pensivej.github.io/transport"
},
profileImage: "src/images/transport-logo.png"
}, {
id: "MUSEUM",
name: "국립제주박물관",
url: {
stage: "https://pensivej.github.io/museum",
prod: "https://pensivej.github.io/museum"
},
profileImage: "src/images/museum-logo.png"
}];