-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathapp.json
28 lines (28 loc) · 934 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
{
"name": "Appointment Reminder Laravel",
"description": "Notify customers of upcoming appointments",
"website": "https://twilio.com",
"logo": "https://www.twilio.com/marketing/bundles/marketing/img/favicons/favicon_114.png",
"success_url": "/",
"addons": [],
"keywords": ["php", "laravel", "twilio"],
"env": {
"APP_KEY" : {
"description": "Use 'php artisan key:generate --show' to create an APP KEY",
"value": ""
},
"TWILIO_ACCOUNT_SID": {
"description": "Your Twilio Account SID. Get a free account at twilio.com/try-twilio",
"value": ""
},
"TWILIO_AUTH_TOKEN": {
"description": "Your Twilio Auth Token. You can get it at twilio.com/console",
"value": ""
},
"TWILIO_PHONE_NUMBER": {
"description": "The Twilio phone number you want to use to send SMS. Get one in the Twilio Console",
"value": ""
},
"LOG_CHANNEL": "errorlog"
}
}