]> git.localhorst.tv Git - alttp.git/blobdiff - config/filesystems.php
SM favicon
[alttp.git] / config / filesystems.php
index 68b2694e004cdc85c3124420c351a734d07c94a1..4076fb54077e0b08eb33dac2550634d6af99d90c 100644 (file)
@@ -44,6 +44,18 @@ return [
                        'throw' => false,
                ],
 
+               'alttp-seeds' => [
+                       'driver' => 'local',
+                       'root' => storage_path('app/alttp-seeds'),
+                       'url' => env('AOS_URL').'/alttp-seeds',
+                       'visibility' => 'public',
+               ],
+
+               'alttp-spoilers' => [
+                       'driver' => 'local',
+                       'root' => storage_path('app/alttp-spoilers'),
+               ],
+
                'aos-seeds' => [
                        'driver' => 'local',
                        'root' => storage_path('app/aos-seeds'),
@@ -51,6 +63,11 @@ return [
                        'visibility' => 'public',
                ],
 
+               'aos-spoilers' => [
+                       'driver' => 'local',
+                       'root' => storage_path('app/aos-spoilers'),
+               ],
+
                's3' => [
                        'driver' => 's3',
                        'key' => env('AWS_ACCESS_KEY_ID'),
@@ -78,6 +95,7 @@ return [
 
        'links' => [
                public_path('storage') => storage_path('app/public'),
+               public_path('alttp-seeds') => storage_path('app/alttp-seeds'),
                public_path('aos-seeds') => storage_path('app/aos-seeds'),
        ],