Change env storage

This commit is contained in:
René Preuß
2021-07-23 17:40:31 +02:00
parent d25046f545
commit 917af5c140
9 changed files with 48 additions and 24 deletions

11
config/filesystems.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
return [
'default' => 'local',
'disks' => [
'local' => [
'driver' => 'local',
'root' => getenv('HOME') . DIRECTORY_SEPARATOR . '.bunny-cli',
],
],
];