fix: settings for apps and projects
add: coolify version config fix: private key for private git based apps
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\Project;
|
||||
use App\Models\ProjectSetting;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class ProjectSettingSeeder extends Seeder
|
||||
@@ -11,10 +10,7 @@ class ProjectSettingSeeder extends Seeder
|
||||
public function run(): void
|
||||
{
|
||||
$first_project = Project::find(1);
|
||||
ProjectSetting::create([
|
||||
'id' => 1,
|
||||
'wildcard_domain' => 'testing-host.localhost',
|
||||
'project_id' => $first_project->id,
|
||||
]);
|
||||
$first_project->settings->wildcard_domain = 'wildcard.example.com';
|
||||
$first_project->settings->save();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user