-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
27 lines (27 loc) · 880 Bytes
/
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
{
"name": "stripe-processor",
"description": "A simple, but flexible web app to process a payment using the Stripe API.",
"repository": "https://github.com/n8io/stripe-processor.git",
"logo": "https://pbs.twimg.com/profile_images/497432038492733440/eW6tXeq3.png",
"keywords": [
"stripe",
"node",
"express"
],
"env": {
"STRIPE_PUBLIC_KEY": {
"description": "Your public key for your Stripe account, e.g. pk_live_..."
},
"STRIPE_SECRET_KEY": {
"description": "Your secret key for your Stripe account, e.g. sk_live_..."
},
"STRIPE_TRANSACTION_RATE": {
"description": "The percentage rate for all Stripe transactions, e.g. 2.999",
"value": "2.999"
},
"STRIPE_TRANSACTION_FLAT_FEE": {
"description": "The flat transaction fee for all Stripe transactions, e.g. 0.30",
"value": "0.30"
}
}
}