mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
1d93000c6f
* feat(admin): migrate db dumps from github to platform * style: fix StyleCI findings
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Dump Disk
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The filesystem disk where database dumps are hosted. By default, it is assumed
|
|
| that database dumps are hosted in an S3-like bucket.
|
|
|
|
|
*/
|
|
|
|
'disk' => env('DUMP_DISK', 'dumps'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Dump Domain
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| These values represent the base URL that dumps are downloaded from.
|
|
| It is most likely that only one of these values should be set.
|
|
| If deumps are downloaded from a subdomain, set DUMP_URL and leave DUMP_PATH null.
|
|
| Ex: dump.animethemes.test
|
|
| If dumps are NOT streamed from a subdomain, set DUMP_PATH and leave DUMP_URL null.
|
|
| Ex: animethemes.test/dump
|
|
|
|
|
*/
|
|
|
|
'url' => env('DUMP_URL'),
|
|
|
|
'path' => env('DUMP_PATH'),
|
|
];
|