|
8 | 8 | * The name of this application. You can use this name to monitor |
9 | 9 | * the backups. |
10 | 10 | */ |
11 | | - 'name' => env('APP_NAME', 'laravel-backup'), |
| 11 | + 'name' => 'updater-backups', |
12 | 12 |
|
13 | 13 | 'source' => [ |
14 | 14 |
|
|
27 | 27 | * Directories used by the backup process will automatically be excluded. |
28 | 28 | */ |
29 | 29 | 'exclude' => [ |
30 | | - base_path('vendor'), |
31 | | - base_path('node_modules'), |
| 30 | + base_path('backups'), |
32 | 31 | ], |
33 | 32 |
|
34 | 33 | /* |
|
80 | 79 | * For a complete list of available customization options, see https://github.com/spatie/db-dumper |
81 | 80 | */ |
82 | 81 | 'databases' => [ |
83 | | - 'mysql', |
| 82 | + 'sqlite', |
84 | 83 | ], |
85 | 84 | ], |
86 | 85 |
|
|
116 | 115 | * The disk names on which the backups will be stored. |
117 | 116 | */ |
118 | 117 | 'disks' => [ |
119 | | - 'local', |
| 118 | + 'backups', |
120 | 119 | ], |
121 | 120 | ], |
122 | 121 |
|
123 | 122 | /* |
124 | 123 | * The directory where the temporary files will be stored. |
125 | 124 | */ |
126 | | - 'temporary_directory' => storage_path('app/backup-temp'), |
| 125 | + 'temporary_directory' => base_path('backups'), |
127 | 126 |
|
128 | 127 | /* |
129 | 128 | * The password to be used for archive encryption. |
|
138 | 137 | * When set to 'default', we'll use ZipArchive::EM_AES_256 if it is |
139 | 138 | * available on your system. |
140 | 139 | */ |
141 | | - 'encryption' => 'default', |
| 140 | + 'encryption' => null, |
142 | 141 | ], |
143 | 142 |
|
144 | 143 | /* |
|
165 | 164 | */ |
166 | 165 | 'notifiable' => \Spatie\Backup\Notifications\Notifiable::class, |
167 | 166 |
|
168 | | - 'mail' => [ |
169 | | - |
170 | | - |
171 | | - 'from' => [ |
172 | | - 'address' => env( 'MAIL_FROM_ADDRESS', '[email protected]'), |
173 | | - 'name' => env('MAIL_FROM_NAME', 'Example'), |
174 | | - ], |
175 | | - ], |
176 | | - |
177 | | - 'slack' => [ |
178 | | - 'webhook_url' => '', |
179 | | - |
180 | | - /* |
181 | | - * If this is set to null the default channel of the webhook will be used. |
182 | | - */ |
183 | | - 'channel' => null, |
184 | | - |
185 | | - 'username' => null, |
186 | | - |
187 | | - 'icon' => null, |
188 | | - |
189 | | - ], |
190 | 167 | ], |
191 | 168 |
|
192 | 169 | /* |
|
0 commit comments