-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6db5952
commit de65b23
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,6 +63,13 @@ Laravel Backup Panel exposes a dashboard at `/backup`. Change it in `config/lara | |
'path' => 'backup', | ||
``` | ||
|
||
Sometimes you don't want to run backup jobs on the same queue as user actions and things that is more time critical. | ||
Specify your desired queue name in `config/laravel_backup_panel.php` file: | ||
|
||
```php | ||
'queue' => 'dedicated_low_priority_queue', | ||
``` | ||
|
||
By default, you will only be able to access the dashboard in the `local` environment. | ||
To change that, modify authorization gate in the `app/Providers/LaravelBackupPanelServiceProvider.php`: | ||
|
||
|
@@ -121,4 +128,4 @@ If you discover any security related issues, please email [email protected] | |
|
||
## License | ||
|
||
The MIT License (MIT). Please see [License File](LICENSE.md) for more information. | ||
The MIT License (MIT). Please see [License File](LICENSE.md) for more information. |