forked from liquality/atomicagent
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
62 lines (62 loc) · 1.67 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "Atomic Agent",
"description": "Lending on autopilot",
"repository": "https://github.com/atomicloans/atomicagent",
"logo": "https://raw.githubusercontent.com/AtomicLoans/agent/dev/atomic-loans.png",
"keywords": ["atomic loans", "loans", "ethereum", "bitcoin", "cryptocurrency"],
"addons": ["mongolab:sandbox"],
"engines": {
"node": "8.12.0"
},
"env": {
"METAMASK_ETH_ADDRESS": {
"description": "Please enter the Ethereum address associated with your Metamask Wallet",
"value": ""
},
"MNEMONIC": {
"description": "(OPTIONAL) Enter a 12 word mnemonic if you are importing an existing agent",
"value": "",
"required": false
},
"HEROKU_APP": {
"description": "Please copy the App name that you entered earlier. MAKE SURE IT MATCHES!",
"require": true
},
"NPM_CONFIG_PRODUCTION": {
"description": "Don't worry about this. It should be true",
"value": "true"
},
"BTC_RPC": {
"description": "Bitcoin RPC Endpoint",
"require": true
},
"BTC_USER": {
"description": "Bitcoin RPC user",
"require": true
},
"BTC_PASS": {
"description": "Bitcoin RPC pass",
"require": true
},
"BTC_API": {
"description": "Bitcoin API Endpoint",
"require": true
},
"ETH_RPC": {
"description": "Ethereum RPC Endpoint",
"require": true
},
"NETWORK": {
"description": "Ethereum Network",
"required": true
},
"DASH_PASS": {
"description": "Jobs Dashboard Password",
"required": true
},
"BUGSNAG_API": {
"description": "Error monitoring",
"required": true
}
}
}