-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
80 lines (80 loc) · 2.08 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
72
73
74
75
76
77
78
79
80
{
"cron": [
{
"command": "bundle exec rake packages:sync_recent_npm",
"schedule": "*/5 * * * *"
},
{
"command": "bundle exec rake packages:sync_recent",
"schedule": "*/15 * * * *"
},
{
"command": "bundle exec rake packages:sync_least_recent",
"schedule": "*/15 * * * *"
},
{
"command": "bundle exec rake packages:sync_least_recent_top",
"schedule": "*/30 * * * *"
},
{
"command": "bundle exec rake packages:sync_worst_one_percent",
"schedule": "*/30 * * * *"
},
{
"command": "bundle exec rake packages:update_repo_metadata_async",
"schedule": "*/30 * * * *"
},
{
"command": "bundle exec rake packages:check_statuses",
"schedule": "0 * * * *"
},
{
"command": "bundle exec rake packages:sync_missing",
"schedule": "0 0 * * *"
},
{
"command": "bundle exec rake packages:update_extra_counts",
"schedule": "0 5 * * *"
},
{
"command": "bundle exec rake packages:sync_maintainers",
"schedule": "*/30 * * * *"
},
{
"command": "bundle exec rake packages:update_rankings",
"schedule": "*/30 * * * *"
},
{
"command": "bundle exec rake sitemap:refresh",
"schedule": "0 4 * * *"
},
{
"command": "bundle exec rake packages:update_advisories",
"schedule": "0 * * * *"
},
{
"command": "bundle exec rake packages:sync_outdated_docker",
"schedule": "0 * * * *"
},
{
"command": "bundle exec rake packages:update_docker_usages",
"schedule": "0 3 * * *"
},
{
"command": "bundle exec rake packages:sync_batch_registries_outdated",
"schedule": "0 * * * *"
},
{
"command": "bundle exec rake packages:crawl_recently_updated_github_marketplace",
"schedule": "0 */2 * * *"
},
{
"command": "bundle exec rake packages:calculate_funding_domains",
"schedule": "0 0 */6 * *"
},
{
"command": "bundle exec rake packages:clean_up_sidekiq_unique_jobs",
"schedule": "0 0 * * 0"
}
]
}