3b191fa73e
add: coolify version config fix: private key for private git based apps
27 lines
575 B
PHP
27 lines
575 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Application;
|
|
use App\Models\ApplicationSetting;
|
|
use App\Models\Environment;
|
|
use App\Models\GithubApp;
|
|
use App\Models\StandaloneDocker;
|
|
use App\Models\SwarmDocker;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ApplicationSettingsSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
// $application_1 = Application::find(1);
|
|
// ApplicationSetting::create([
|
|
// 'id' => 1,
|
|
// 'application_id' => $application_1->id,
|
|
// ]);
|
|
}
|
|
}
|