feat: add s3 storages
This commit is contained in:
35
database/seeders/S3StorageSeeder.php
Normal file
35
database/seeders/S3StorageSeeder.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
use App\Models\S3Storage;
|
||||
|
||||
class S3StorageSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
S3Storage::create([
|
||||
'name' => 'Local MinIO',
|
||||
'description' => 'Local MinIO S3 Storage',
|
||||
'key' => 'minioadmin',
|
||||
'secret' => 'minioadmin',
|
||||
'bucket' => 'local',
|
||||
'endpoint' => 'http://coolify-minio:9000',
|
||||
'team_id' => 0,
|
||||
]);
|
||||
S3Storage::create([
|
||||
'name' => 'DO Spaces',
|
||||
'description' => 'DO S3 Storage',
|
||||
'key' => 'DO003UBFTACPQGUXUANY',
|
||||
'secret' => 'eXDSco/04+5RHti19X8O/QE1aWIhZHAyyuOEs4J1JWA',
|
||||
'bucket' => 'files',
|
||||
'endpoint' => 'https://test-coolify.ams3.digitaloceanspaces.com',
|
||||
'team_id' => 0,
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user