-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
48 lines (48 loc) · 1.13 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "Citibike Texts",
"description": "Receive a text with the number of bikes in your nearest New York Citibike docks.",
"repository": "https://github.com/jshakes/citibike-texts",
"addons": [
"scheduler"
],
"formation": {
"web": {
"quantity": 0
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"TWILIO_ACCOUNT_SID": {
"description": "Twilio account SID",
"value": ""
},
"TWILIO_AUTH_TOKEN": {
"description": "Twilio auth token",
"value": ""
},
"RECIPIENT_PHONE": {
"description": "The number to receive SMS messages, format: +11235551111",
"value": ""
},
"SENDER_PHONE": {
"description": "The Twilio phone number from which the SMS messages are sent, format: +11235551111",
"value": ""
},
"LATITUDE": {
"description": "Origin latitude",
"value": "40.748441"
},
"LONGITUDE": {
"description": "Origin longitude",
"value": "-73.985664"
},
"NUM_STATIONS": {
"description": "Number of stations from which to report bike availability",
"value": "3"
}
}
}