Add production seeder

Add ssh-key custom storage
This commit is contained in:
Andras Bacsai
2023-04-14 10:30:53 +02:00
parent bb694cbffd
commit 310cac8233
3 changed files with 30 additions and 11 deletions

View File

@@ -44,6 +44,22 @@ return [
'throw' => false,
],
'ssh-keys' => [
'driver' => 'local',
'root' => storage_path('app/ssh-keys'),
'url' => env('APP_URL').'/storage',
'visibility' => 'private',
'throw' => false,
],
'deployments' => [
'driver' => 'local',
'root' => storage_path('app/deployments'),
'url' => env('APP_URL').'/storage',
'visibility' => 'private',
'throw' => false,
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),