forked from maverick915/southwest-price-drop-bot
-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
71 lines (71 loc) · 1.99 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "Southwest Price Drop Bot",
"description": "Bot that watches Southwest flights for price drops.",
"repository": "https://github.com/samyun/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."
},
"PROXY": {
"description": "Proxy used to query SWA. Example: 123.123.123.123:1234",
"required": false
},
"PLIVO_ID": {
"description": "If you would like to use sms text messages, 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": "This should be added automatically. If you would like to use email, enter your Mailgun API Key.",
"required": false
},
"MAILGUN_DOMAIN": {
"description": "The domain to send emails from, e.g. mg.example.com",
"required": false
},
"MAILGUN_EMAIL": {
"description": "Email address to send mail from with Mailgun. Example: Mailgun Sandbox <[email protected]>",
"required": false
},
"MAX_PAGES": {
"description": "The maximum number of simultaneous checks. 5 seems to work well on the free Heroku dyno (512MB)",
"value": "5"
},
"NODE_MODULES_CACHE": {
"description": "Leave this set to false.",
"value": "false"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
"mongolab:sandbox",
"papertrail:choklad",
"scheduler:standard",
"mailgun:starter"
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jontewks/puppeteer-heroku-buildpack"
}
]
}