forked from stripe-archive/stripe-payments-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
36 lines (36 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
{
"name": "Stripe Payments Demo",
"description":
"Sample store accepting universal payments on the web with Stripe Elements, Payment Request, Apple Pay, Google Pay, and the Sources API.",
"repository": "https://github.com/stripe/stripe-payments-demo",
"logo": "https://stripe-payments-demo.appspot.com/images/logo.png",
"keywords": [
"stripe",
"stripe-elements",
"stripe-sources",
"node",
"javascript",
"payments",
"payment-methods",
"payment-request",
"apple-pay",
"google-pay"
],
"env": {
"STRIPE_PUBLISHABLE_KEY": {
"description":
"Your Stripe publishable key. Find it here in your Dashboard: https://dashboard.stripe.com/account/apikeys",
"required": true
},
"STRIPE_SECRET_KEY": {
"description":
"Your Stripe secret key. Find it here in your Dashboard: https://dashboard.stripe.com/account/apikeys",
"required": true
},
"STRIPE_WEBHOOK_SECRET": {
"description":
"Your webhook secret to verify signatures. Find it here in your Dashboard: https://dashboard.stripe.com/account/webhooks",
"required": false
}
}
}