-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
41 lines (41 loc) · 1.06 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
40
41
{
"name": "Heroku Stripe Proxy",
"description": "Forward Stripe event webhooks to all review apps in a Heroku pipeline",
"keywords": [
"stripe",
"heroku",
"proxy"
],
"repository": "https://github.com/Mariana-Tek/heroku-stripe-proxy",
"env": {
"HEROKU_API_KEY": {
"description": "Herokou API key."
},
"HEROKU_PIPELINE_ID": {
"description": "The ID of the pipeline that will receive the event webhooks."
},
"WEBHOOK_PATH": {
"description": "The path that receives the Stripe webhooks, both from Stripe and to review apps."
},
"STRIPE_SECRET_KEY": {
"description": "OPTIONAL: Stripe secret key to check webhook signature before proxying.",
"required": false
},
"STRIPE_ENDPOINT_SECRET": {
"description": "OPTIONAL: Stripe endpoint secret to check webhook signature before proxying.",
"required": false
}
},
"formation": {
"web": {
"quantity": 1,
"size": "hobby"
}
},
"image": "heroku/nodejs",
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}