-
Notifications
You must be signed in to change notification settings - Fork 61
/
app.json
24 lines (24 loc) · 896 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
{
"name": "Recurly Integration Examples",
"description": "For quickly getting started with a Recurly integration.",
"repository": "https://github.com/recurly/recurly-integration-examples",
"keywords": ["recurly", "ruby", "payments", "subscriptions"],
"env": {
"RECURLY_API_KEY": {
"description": "The PRIVATE key from at https://app.recurly.com/go/integrations/api_keys",
"required": true
},
"RECURLY_PUBLIC_KEY": {
"description": "The PUBLIC key from https://app.recurly.com/go/integrations/api_keys",
"required": true
},
"SUCCESS_URL": {
"description": "Where your customers will be redirected if their subscription is successfully created",
"required": true
},
"ERROR_URL": {
"description": "Where your customers will be redirected if there is a problem with their submission",
"required": true
}
}
}