-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
37 lines (37 loc) · 977 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
29
30
31
32
33
34
35
36
37
{
"name": "Visa Appointment Tracker",
"repository": "https://github.com/dhyegocalota/visa-appointment-tracker",
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "jontewks/puppeteer"
}
],
"addons": ["papertrail:choklad", "rollbar:trial-5k"],
"env": {
"NODE_ENV": {
"description": "Environment can be set to `development` or `production`.",
"value": "production"
},
"VERBOSE": {
"description": "Enable detailed logs. Can be set to `true` or `false`.",
"value": "false"
},
"DEFAULT_PUPPETEER_TIMEOUT": {
"description": "Default timeout in ms of the Puppeteer library.",
"value": "5000"
},
"GET_AVAILABLE_APPOINTMENT_CONSULATES_WORKFLOW_CONFIG_IN_JSON": {
"description": "Serialized JSON Config of the GetAvailableAppointmentConsulates Workflow.",
"required": true
}
},
"formation": {
"cron": {
"quantity": 1,
"size": "free"
}
}
}