forked from OriginProtocol/origin-bridge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
92 lines (92 loc) · 2.6 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "Origin Protocol bridge server",
"description": "Development version of bridge.originprotocol.com",
"website": "https://bridge.originprotocol.com/",
"repository": "https://github.com/OriginProtocol/bridge-server",
"logo": "https://avatars1.githubusercontent.com/u/30638653",
"success_url": "/",
"env": {
"FLASK_SECRET_KEY": {
"description": "Secret key for the Flask framework",
"generator": "secret",
"required": true
},
"PROJECTPATH": {
"description": "Root directory for the app (you don't need to change this)",
"value": "/app",
"required": true
},
"HOST": {
"description": "Replace 'app-name' with the App Name you chose above",
"value": "app-name.herokuapp.com",
"required": true
},
"TWILIO_ACCOUNT_SID": {
"description": "Account SID which acts as a username",
"required": false
},
"TWILIO_AUTH_TOKEN": {
"description": "Auth token which acts as a password",
"required": false
},
"TWILIO_NUMBER": {
"description": "Twilio number",
"required": false
},
"RPC_SERVER": {
"description": "RPC server URL",
"required": false
},
"RPC_PROTOCOL": {
"description": "RPC server protocol [wss, https]",
"required": false
},
"IPFS_DOMAIN": {
"description": "IPFS domain name",
"required": false
},
"IPFS_PORT": {
"description": "IPFS port",
"required": false
},
"ATTESTATION_SIGNING_KEY": {
"description": "Origin signing key",
"value": "0x0000000000000000000000000000000000000000000000000000000000000001"
},
"FACEBOOK_CLIENT_ID": {
"description": "Facebook client ID given to your app",
"required": false
},
"FACEBOOK_CLIENT_SECRET": {
"description": "A unique secret associated with your application",
"required": false
},
"SENDGRID_FROM_EMAIL": {
"description": "This will display to the user as the email address who sent this email.",
"required": false
},
"SENDGRID_API_KEY": {
"description": "Sendgrid API key associated with your account",
"required": false
},
"TWITTER_CONSUMER_KEY": {
"description": "Twitter consumer key associated with your account",
"value": "xxxxxx"
},
"TWITTER_CONSUMER_SECRET": {
"description": "Twitter consumer secret associated with your key",
"value": "xxxxxx"
}
},
"addons": [{
"plan": "heroku-postgresql:hobby-dev"
},
{
"plan": "heroku-redis:hobby-dev"
}
],
"buildpacks": [{
"url": "heroku/python"
}
]
}