Appearance
1247 - Cron Jobs
Scheduled task definitions. This is an example of a MAML document.
maml
{
timezone: "America/New_York"
jobs: [
{
name: "refresh-cache"
schedule: "0 0 * * *"
command: "pg_dump $DATABASE_URL"
enabled: true
}
{
name: "cleanup-temp"
schedule: "0 * * * *"
command: "./bin/sync --all"
enabled: true
}
{
name: "backup-db"
schedule: "0 0 * * *"
command: "./bin/sync --all"
enabled: true
}
]
}