-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
30 lines (30 loc) · 1.04 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
{
"name": "Appointment Reminders Java",
"description": "Notify customers of upcoming appointments",
"keywords": [
"twilio",
"spark",
"java"
],
"scripts": {
"postdeploy": "mvn flyway:migrate"
},
"addons": [
"heroku-postgresql:hobby-dev"
],
"env": {
"TWILIO_ACCOUNT_SID": {
"description": "API username - find your account SID at https://www.twilio.com/user/account/voice-messaging"
},
"TWILIO_AUTH_TOKEN": {
"description": "API password - find your auth token at https://www.twilio.com/user/account/voice-messaging"
},
"TWILIO_PHONE_NUMBER": {
"description": "A number in your Twilio account to use with this application in E.164 format (e.g. +16518675309) - view your numbers at https://www.twilio.com/user/account/phone-numbers/incoming"
}
},
"website": "https://github.com/TwilioDevEd/appointment-reminders-java",
"repository": "https://github.com/TwilioDevEd/appointment-reminders-java",
"logo": "https://s3.amazonaws.com/howtodocs/twilio-logo.png",
"success_url": "/"
}