-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.js
32 lines (23 loc) · 961 Bytes
/
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
'use strict';
const config = {
// Change to your endpoint did's endpoint
endpointDidEndpoint: process.env.PUBLIC_DID_ENDPOINT,
// IP Address of the running ledger
testPoolIp: process.env.TEST_POOL_IP || '127.0.0.1',
// the port to run the agent server on
port: process.env.PORT || 3000,
// Optional: Give your wallet a unique name
walletName: `${process.env.USERNAME || 'default'}_wallet`,
// Optional: Give your pool config a unique name
poolName: process.env.POOL_NAME || 'pool1',
// This information is used to issue your "Government ID"
userInformation: {
name: process.env.NAME,
email: process.env.EMAIL,
tax_id: process.env.TAX_ID,
username: process.env.USERNAME,
password: process.env.PASSWORD
},
sessionSecret: "YUYFDISYFSIUOFYERTEWRTEWTWETRNNNMNJHKHFASDdyfiudayDAYIUSDFYASIOFOOASIUDFYEREAHLSKJFE57894502354354HJKAFDDFS"
};
module.exports = config;