-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
36 lines (36 loc) · 1.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
32
33
34
35
36
{
"name": "Php Webhook Client",
"description": "A sample microservice to subscribe and react to Weebly Webhook events.",
"repository": "https://github.com/weebly/php-webhook-client",
"logo": "https://dev.weebly.com/images/weebly_logo.svg",
"keywords": [
"Square",
"Weebly",
"node",
"webhook",
"webhooks",
"event",
"subscriber",
"subscription",
"sample app"
],
"env": {
"WEEBLY_APP_NAME": {
"description": "Replace {{PREFIX}} with your first initial and the first three characters of your last name, keep `-env-sub` as is.",
"value": "{{PREFIX}}-evt-sub",
"required": true
},
"WEEBLY_CLIENT_ID": {
"description": "The `Client ID` for your Weebly app, obtained from the Weebly Developer Admin Portal: https://www.weebly.com/developer-admin/",
"required": true
},
"WEEBLY_SECRET": {
"description": "The `Secret` for your Weebly app, obtained from the Weebly Developer Admin Portal: https://www.weebly.com/developer-admin/",
"required": true
}
},
"image": "heroku/php",
"addons": [
"papertrail:choklad"
]
}