-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
37 lines (37 loc) · 1.13 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
{
"name": "MPGS Merchant Server",
"description": "Sample GO application for processing mobile SDK transactions on the Gateway",
"repository": "https://github.com/dangeroustech/MPGSMerchantServer.git",
"website": "https://github.com/dangeroustech/MPGSMerchantServer",
"env": {
"GATEWAY_MERCHANT_ID": {
"required": true,
"description": "Your TEST Gateway merchant ID (must begin with 'TEST')"
},
"GATEWAY_API_PASSWORD": {
"required": true,
"description": "Your TEST Gateway API password"
},
"GATEWAY_REGION": {
"required": true,
"description": "The Gateway region to target (options: ASIA_PACIFIC, EUROPE, NORTH_AMERICA, INDIA, CHINA, MTF)",
"value": "MTF"
},
"GATEWAY_API_VERSION": {
"required": true,
"description": "The Gateway API version to target",
"value": "56"
}
},
"keywords": [
"mastercard",
"mobile",
"payments",
"gateway"
],
"buildpacks": [
{
"url": "heroku/go"
}
]
}