-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.json
27 lines (27 loc) · 1.23 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
{
"name": "weebly-node-webhook-client",
"description": "A sample microservice to subscribe and react to Weebly Webhook events.",
"repository": "https://github.com/Weebly/node-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/nodejs",
"repository": "https://github.com/weebly/node-webhook-client",
"addons": [
"papertrail:choklad"
]
}