Cron jobs added to Dokku's app.json configuration file

This commit is contained in:
Christoph Haas 2021-02-21 20:29:40 +01:00
parent e9b2a2193e
commit fd9710a071

12
app.json Normal file
View file

@ -0,0 +1,12 @@
{
"cron": [
{
"command": "rake debshots:update_from_deb_repos",
"schedule": "5 7 * * *"
},
{
"command": "rake debshots:update_longdescription_from_deb_repos",
"schedule": "35 7 * * *"
}
]
}