Get backups to work again

This is still a littlw wonky tho :(
This commit is contained in:
snipe 2016-05-12 17:11:26 -07:00
parent 9cfde523b0
commit cfe38322b9

View file

@ -8,7 +8,7 @@ return [
* The name of this application. You can use this name to monitor * The name of this application. You can use this name to monitor
* the backups. * the backups.
*/ */
'name' => env('APP_URL'), 'name' => 'backups',
'source' => [ 'source' => [
@ -29,8 +29,8 @@ return [
* You can specify individual files as well. * You can specify individual files as well.
*/ */
'exclude' => [ 'exclude' => [
base_path('vendor'), // base_path('vendor'),
base_path('node_modules'), // base_path('node_modules'),
], ],
/* /*
@ -109,7 +109,7 @@ return [
*/ */
'monitorBackups' => [ 'monitorBackups' => [
[ [
'name' => env('APP_URL'), 'name' => 'backups',
'disks' => ['local'], 'disks' => ['local'],
'newestBackupsShouldNotBeOlderThanDays' => 1, 'newestBackupsShouldNotBeOlderThanDays' => 1,
'storageUsedMayNotBeHigherThanMegabytes' => 5000, 'storageUsedMayNotBeHigherThanMegabytes' => 5000,
@ -151,8 +151,8 @@ return [
* Here you can specify how emails should be sent. * Here you can specify how emails should be sent.
*/ */
'mail' => [ 'mail' => [
'from' => 'your@email.com', 'from' => env('MAIL_FROM_ADDR'), 'your@email.com'),
'to' => 'your@email.com', 'to' => env('MAIL_FROM_ADDR'), 'your@email.com'),
], ],
/* /*