mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-01-09 11:20:15 +00:00
9 lines
268 B
PHP
9 lines
268 B
PHP
<?php
|
|
|
|
use App\Console\Commands\Nostr\SyncProfiles;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Schedule::command('backup:clean')->daily()->at('01:00');
|
|
Schedule::command('backup:run')->daily()->at('01:30');
|
|
Schedule::command(SyncProfiles::class)->daily()->at('00:30');
|