-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
39 lines (39 loc) · 1.09 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
{
"name": "MONEI Payments Demo",
"description": "Sample store accepting Credit Card, PayPal, Bizum, Apple Pay, Google Pay payments on the web with MONEI Components and Payments API.",
"repository": "https://github.com/MONEI/monei-payments-demo",
"logo": "https://assets.monei.com/images/icon.png",
"keywords": [
"monei",
"monei-components",
"node",
"javascript",
"payments",
"payment-methods",
"payment-request"
],
"env": {
"MONEI_ACCOUNT_ID": {
"description":
"Your MONEI Account ID. Find it here in your Dashboard: https://dashboard.monei.com/settings/api",
"required": true
},
"MONEI_API_KEY": {
"description":
"Your MONEI API Key. Find it here in your Dashboard: https://dashboard.monei.com/settings/api",
"required": true
},
"MIN_PRICE": {
"description":
"Minimum price of the random product in EUR",
"required": false,
"value": "10"
},
"MAX_PRICE": {
"description":
"Maximum price of the random product in EUR",
"required": false,
"value": "25"
}
}
}