corretto, era il DB che avevo cancellato l'utente dove era salvata la chiave...

This commit is contained in:
paoloar77
2024-06-15 18:29:22 +02:00
parent 1824f30a94
commit 34aa2b26ef
4 changed files with 53 additions and 12 deletions

View File

@@ -14,7 +14,7 @@ class Kernel extends ConsoleKernel
* @var array
*/
protected $commands = [
//
\App\Console\Commands\FixStoragePermissions::class,
];
/**
@@ -28,6 +28,10 @@ class Kernel extends ConsoleKernel
// Log::info('Controllo schedule...');
// $schedule->command('inspire')->hourly();
// Pianifica l'esecuzione del comando ogni giorno a mezzanotte
$schedule->command('fix:storage-permissions')->daily();
$schedule->command('backup:clean')->daily()->at('02:00')->before(function () {
Log::info('Running backup:clean command');
});