fix: settings for apps and projects

add: coolify version config
fix: private key for private git based apps
This commit is contained in:
Andras Bacsai
2023-03-30 11:09:39 +02:00
parent 90424d9847
commit 3b191fa73e
11 changed files with 62 additions and 25 deletions

View File

@@ -17,10 +17,10 @@ class ApplicationSettingsSeeder extends Seeder
*/
public function run(): void
{
$application_1 = Application::find(1);
ApplicationSetting::create([
'id' => 1,
'application_id' => $application_1->id,
]);
// $application_1 = Application::find(1);
// ApplicationSetting::create([
// 'id' => 1,
// 'application_id' => $application_1->id,
// ]);
}
}