File tree Expand file tree Collapse file tree 2 files changed +8
-34
lines changed Expand file tree Collapse file tree 2 files changed +8
-34
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 10
10
$ this ->comment (Inspiring::quote ());
11
11
})->purpose ('Display an inspiring quote ' )->hourly ();
12
12
13
+ if (app ()->environment ('production ' )) {
14
+ Schedule::command ('lcm:post-article-to-twitter ' )->everyFourHours ();
15
+ Schedule::command ('lcm:post-article-to-telegram ' )->everyFourHours ();
16
+ Schedule::command ('lcm:send-unverified-mails ' )->weeklyOn (1 , '8:00 ' );
17
+ Schedule::command ('lcm:notify-pending-articles ' )->cron ('8 0 */2 * * ' );
18
+ }
19
+
20
+ Schedule::command ('lcm:delete-old-unverified-users ' )->daily ();
13
21
Schedule::command ('sitemap:blog-generate ' )->dailyAt ('01:00 ' );
14
22
Schedule::command ('sitemap:discussion-generate ' )->dailyAt ('01:10 ' );
15
23
Schedule::command ('sitemap:generate ' )->dailyAt ('02:00 ' );
You can’t perform that action at this time.
0 commit comments