This repository has been archived by the owner on May 4, 2018. It is now read-only.
forked from arfrank/southwest-price-drop-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
58 lines (58 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
{
"name": "Southwest Price Drop Bot",
"description": "Bot that watches Southwest flights for price drops.",
"repository": "https://github.com/scott113341/southwest-price-drop-bot",
"success_url": "/",
"env": {
"ADMIN_NAME": {
"description": "Login user name for admin user.",
"value": "admin"
},
"PASSWORD": {
"description": "Login password, used for all accounts."
},
"PLIVO_ID": {
"description": "If you would like to use sms, enter your Plivo Auth ID.",
"required": false
},
"PLIVO_TOKEN": {
"description": "Your Plivo Auth token.",
"required": false
},
"PLIVO_NUMBER": {
"description": "Your Plivo phone number. Example: 12223334444",
"required": false
},
"MAILGUN_API_KEY": {
"description": "If you would like to use email, API KEY for using mailgun",
"required": false
},
"MAILGUN_DOMAIN": {
"description": "The domain to send emails from, e.g. mg.example.com",
"required": false
},
"FROM_EMAIL": {
"description": "Email address to send mail from with Mailgun. Example: Mailgun Sandbox <[email protected]>",
"required": false
},
"TO_EMAIL": {
"description": "Email addresses (comma separated) to send alerts with Mailgun. Example: [email protected], [email protected]",
"required": false
},
"NODE_MODULES_CACHE": {
"description": "Leave this set to false.",
"value": "false"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
"heroku-redis:hobby-dev",
"papertrail:choklad",
"scheduler:standard"
]
}