mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 06:23:23 +00:00
Dispatch edit-domain-saved so Alpine closes the domain edit modal, wire Save to updateDomain, and force white active log toolbar text in dark mode. Seed railpack examples on the local Docker destination only and remove Lima servers, environments, and V5DevLimaSeeder.
20 lines
387 B
PHP
20 lines
387 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Project;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ProjectSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
Project::create([
|
|
'uuid' => 'project',
|
|
'name' => 'My first project',
|
|
'description' => 'This is a test project in development',
|
|
'team_id' => 0,
|
|
]);
|
|
}
|
|
}
|