File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 22
33use Illuminate \Support \Facades \Schedule ;
44
5- Schedule::command ('reminder:send ' )->hourly ()
6- ->sentryMonitor ();
7- Schedule::command ('holidays:sync ' )->daily ()
8- ->sentryMonitor ();
95if (config ('app.auto_update ' )) {
106 Schedule::command ('simpede:update ' )->dailyAt ('01:00 ' )
117 ->withoutOverlapping ()
1511}
1612Schedule::command ('db:optimize ' )->monthlyOn (1 , '02:00 ' )
1713 ->withoutOverlapping ()
14+ ->runInBackground ()
1815 ->timezone (config ('app.schedule_timezone ' ))
1916 ->sentryMonitor ();
20- Schedule::command ('simpede:backup ' )->dailyAt ('17:30 ' )
17+ Schedule::command ('simpede:backup ' )->dailyAt ('18:00 ' )
2118 ->withoutOverlapping ()
2219 ->runInBackground ()
2320 ->timezone (config ('app.schedule_timezone ' ))
2421 ->sentryMonitor ();
22+ Schedule::command ('reminder:send ' )->hourly ()
23+ ->sentryMonitor ();
24+ Schedule::command ('holidays:sync ' )->daily ()
25+ ->sentryMonitor ();
You can’t perform that action at this time.
0 commit comments