I'm trying to disable laravel-backup for dev branch and I can't find a way to do it in .env file. Is it possible to do?
Just don't run the backup commands. For example, in your Console Kernel.php:
```php
if (app()->environment('production')) {
$schedule->command('backup:run')->daily()->at('02:00');
}
Most helpful comment
Just don't run the backup commands. For example, in your Console
Kernel.php:```php
if (app()->environment('production')) {
$schedule->command('backup:run')->daily()->at('02:00');
}