-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
69 lines (67 loc) · 1.9 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
{
"name": "Dappsuite Middleware",
"description": "A Node.js app that connects Salesforce to the Ethereum Blockchain",
"repository": "https://github.com/dappsinc/dappsuite-middleware",
"logo": "http://node-js-sample.herokuapp.com/node.svg",
"success_url": "/",
"website": "https://dapps-inc.com",
"keywords": ["node", "express", "static", "ethereum", "blockchain", "salesforce"],
"scripts": {
"postDeploy": ""
},
"env": {
"CLIENT_ID": {
"description": "The client Id for your Connected App",
"generator": ""
},
"CLIENT_SECRET": {
"description": "The client secret for your Connected App.",
"value": ""
},
"CALLBACK_URI": {
"description": "The callback uri for your Connected App",
"value": ""
},
"DATABASE_URL": {
"description": "The Database URL of where your Etheruem Accounts are stored.",
"value": ""
},
"PROVIDER_URL_MAINNET": {
"description": "The URL of the Ethereum Mainnet Provider.",
"value": "https://mainnet.infura.io/v3/48580280a990467a88a690ef35dcc26a"
},
"PROVIDER_URL_TESTNET": {
"description": "The URL of the Ethereum Ropsten Testnet Provider.",
"value": "https://ropsten.infura.io/v3/"
},
"SF_PWD": {
"description": "The Salesforce Org Password",
"value": ""
},
"SF_UNAME": {
"description": "The Salesforce Org Username",
"value": ""
},
"SQL_PWD": {
"description": "The Database Password where your Ethereum Accounts are stored",
"value": ""
},
"SQL_SERVER": {
"description": "The Database Server where your Ethereum Accounts are stored",
"value": ""
},
"SQL_UNAME": {
"description": "The Database Username",
"value": ""
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
],
"image": "heroku/nodejs"
}