-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
48 lines (48 loc) · 1.2 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
{
"name": "Bitcon arbitrage",
"description": "Bitcoin trading bot with arbitrage",
"repository": "https://github.com/toshipon/bitcoin-arbitrage",
"keywords": ["ruby", "bitcoin", "arbitrage"],
"env": {
"ZAIF_KEY": {
"description": "Zaif API public key"
},
"ZAIF_SECRET": {
"description": "Zaif API secret key"
},
"COINCHECK_KEY": {
"description": "Coincheck API public key"
},
"COINCHECK_SECRET": {
"description": "Coincheck API secret key"
},
"BITFLYER_KEY": {
"description": "Bitflyer API public key"
},
"BITFLYER_SECRET": {
"description": "Bitflyer API secret key"
},
"TRADE_AMOUNT": {
"description": "Amout of trading BTC value"
},
"SLACK_WEBHOOK_URL": {
"description": "Slack incoming webhook url",
"required": false
},
"RUN_ON_HEROKU": {
"description": "A flag to be able to run on heroku",
"value": "on"
},
"RUN_TRADING": {
"description": "Run actual trading when you put 'on'",
"value": "off"
},
"MIN_VOLUME_JPY": {
"description": "Minimum valume how much margin exists",
"value": "10"
}
},
"addons": [
"scheduler"
]
}