-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
44 lines (44 loc) · 1.1 KB
/
app.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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
{
"cron": [
{
"command": "bundle exec rake projects:sync_least_recent",
"schedule": "*/30 * * * *"
},
{
"command": "bundle exec rake funding_sources:sync_least_recent",
"schedule": "*/30 * * * *"
},
{
"command": "bundle exec rake funds:sync_least_recent",
"schedule": "0 * * * *"
},
{
"command": "bundle exec rake funding_sources:update_project_allocation_funding_sources",
"schedule": "0 1 * * *"
},
{
"command": "bundle exec rake funding_sources:sync_all",
"schedule": "0 1 * * *"
},
{
"command": "bundle exec rake funds:sync_transactions",
"schedule": "0 0 * * *"
},
{
"command": "bundle exec rake projects:sync_projects_with_allocations",
"schedule": "0 0 * * *"
},
{
"command": "bundle exec rake funds:run_allocations",
"schedule": "0 12 1 * *"
},
{
"command": "bundle exec rake funds:payout",
"schedule": "0 12 15 * *"
},
{
"command": "bundle exec rake funds:complete_allocations",
"schedule": "0 12 28 * *"
}
]
}