]> git.localhorst.tv Git - alttp.git/blobdiff - config/filesystems.php
add ALttP seed generator
[alttp.git] / config / filesystems.php
index 68b2694e004cdc85c3124420c351a734d07c94a1..e743e9ff6c5bac072032a45ef584eb30a9afa33e 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'),
@@ -78,6 +90,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'),
        ],