-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
30 lines (30 loc) · 943 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
25
26
27
28
29
30
{
"name": "Twilio+moltin integration",
"description": "express app that sends a twilio sms to a customer when they make a moltin order",
"logo": "https://www.moltin.com/img/icons/favicons/apple-touch-icon.png",
"repository": "https://github.com/matthew1809/Twilio-moltin",
"keywords": [
"moltin",
"twilio",
"ecommerce"
],
"env": {
"client_secret": {
"description": "The client_secret is the unique secret associated with your store. You'll find this on the welcome screen of your moltin Dashboard.",
"value": ""
},
"ACCOUNT_SID": {
"description": "Twilio account sid",
"value": ""
},
"AUTH_TOKEN": {
"description": "Twilio auth token",
"value": ""
},
"FROM_NUMBER": {
"description": "the Twilio phone number that will send the sms notifications and then receive the order update requests",
"value": ""
}
},
"success_url": "/test"
}