This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.json
76 lines (76 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "Open Source Index Fund",
"description": "Create your own index fund on Coinbase Pro that replicates Coinbase's Index Fund.",
"repository": "https://github.com/acmeyer/open-source-coinbase-index-fund",
"keywords": ["node", "coinbase pro", "crypto", "coinbase", "tokens", "trading", "exchange", "javascript", "mlab"],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"env": {
"COINBASE_API_URL": {
"description": "The api url to use. This can either be the Coinbase Sandbox API url or the Live Site's API url.",
"value": "https://api-public.sandbox.pro.coinbase.com"
},
"COINBASE_FIAT_CURRENCY": {
"description": "The fiat currency you want to use for your trades.",
"value": "USD"
},
"COINBASE_API_KEY": {
"description": "Your Coinbase Pro API key.",
"value": ""
},
"COINBASE_API_SECRET": {
"description": "Your Coinbase Pro API secret.",
"value": ""
},
"COINBASE_API_PASSPHRASE": {
"description": "Your Coinbase Pro API passphrase.",
"value": ""
},
"APP_ID": {
"description": "The application id for server app.",
"value": "open-source-coinbase-index-fund"
},
"SERVER_URL": {
"description": "The full url for the server api.",
"value": "https://example.herokuapp.com/api"
},
"MASTER_KEY": {
"description": "The master key for accessing the server api. Change this!",
"value": ""
},
"DATABASE_URI": {
"description": "The url to the server's database.",
"value": "MONGODB_URI"
},
"WEB_CONCURRENCY": {
"description": "The number of web workers you want running concurrently.",
"value": "1"
},
"USE_ENCRYPTED_PASSWORDS": {
"description": "Whether to store admin dashboard passwords in plain text or encrypted. If encrypted, use a bcrypt generator to store password in DASHBOARD_USERS below",
"value": "false"
},
"DASHBOARD_USERS": {
"description": "Users of the admin dashboard, using username:password format and comma separated.",
"value": "admin:P@ssw0rd!"
},
"TRUST_PROXY": {
"description": "Whether or not to trust the proxy server. On Heroku you can.",
"value": "1"
},
"COOKIE_SESSION_SECRET": {
"description": "Random secret string.",
"value": ""
}
},
"addons": [
"scheduler",
{
"plan": "mongolab:sandbox"
}
]
}