File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,11 @@ class Kernel extends ConsoleKernel
24
24
*/
25
25
protected function schedule (Schedule $ schedule )
26
26
{
27
- $ min = config ('app.scheduled ' );
27
+ $ hour = config ('app.hour ' );
28
+ $ min = config ('app.min ' );
29
+ $ scheduledInterval = $ hour !== '' ? ( ($ min !== '' && $ min != 0 ) ? $ min .' */ ' . $ hour .' * * * ' : '0 */ ' . $ hour .' * * * ' ) : '*/ ' . $ min .' * * * * ' ;
28
30
if (env ('IS_DEMO ' )) {
29
- $ schedule ->command ('migrate:fresh --seed ' )->cron (' */ ' . $ min . ' * * * * ' );
31
+ $ schedule ->command ('migrate:fresh --seed ' )->cron ($ scheduledInterval );
30
32
}
31
33
}
32
34
Original file line number Diff line number Diff line change 3
3
return [
4
4
5
5
'scheduled ' => env ('SCHEDULED_TIME ' , 15 ),
6
+ 'hour ' => env ('SCHEDULED_HOUR ' , '' ),
7
+ 'min ' => env ('SCHEDULED_MIN ' , '' ),
6
8
7
9
/*
8
10
|--------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments