forked from RevenueCat-Samples/stripe-no-website-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
31 lines (31 loc) · 1 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
{
"name": "Stripe & RevenueCat No-Website Example",
"description": "Redirect to Stripe checkout and process payments, without needing a website.",
"keywords": [
"revenuecat",
"stripe",
"webhooks"
],
"website": "https://www.revenuecat.com/",
"env": {
"RC_API_KEY": {
"description": "Your RevenueCat app API key. Required."
},
"STRIPE_KEY": {
"description": "Stripe's API key. Required."
},
"STRIPE_KEY_TEST": {
"description": "Stripe's Test API key. Required."
},
"TEST_MODE": {
"description": "Whether or not the test key should be used, should be 'true' or 'false'. Required.",
"value": "true"
},
"SUCCESS_URL": {
"description": "The URL redirect URL after a successful purchase. Required."
},
"CANCEL_URL": {
"description": "The URL redirect URL after a purchase is cancelled. Required."
}
}
}