-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 928 Bytes
/
app.json
File metadata and controls
46 lines (46 loc) · 928 Bytes
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
{
"cron": [
{
"command": "python manage.py runjobs minutely",
"schedule": "* * * * *"
},
{
"command": "python manage.py runjobs hourly",
"schedule": "@hourly"
},
{
"command": "python manage.py runjobs daily",
"schedule": "@daily"
},
{
"command": "python manage.py runjobs weekly",
"schedule": "@weekly"
},
{
"command": "python manage.py runjobs monthly",
"schedule": "@monthly"
}
],
"healthchecks": {
"web": [
{
"name": "Web health check",
"type": "startup",
"description": "Check if the app responds to the /health-check endpoint",
"path": "/health-check",
"port": 8000,
"attempts": 5,
"initialDelay": 30,
"timeout": 60
}
]
},
"formation": {
"web": {
"quantity": 1
},
"rapstatus": {
"quantity": 1
}
}
}