Add fixed UUIDs to all development seeders for programmatic API access: - Server: localhost - Project: project - Applications: docker-compose, nodejs, dockerfile, dockerfile-pure - StandaloneDocker: docker - StandalonePostgresql: postgresql - S3Storage: minio - PrivateKeys: ssh, github-key - GithubApps: github-public, github-app - GitlabApp: gitlab-public - LocalPersistentVolume: volume 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
549 B
PHP
22 lines
549 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Project;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ProjectSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
$project = Project::create([
|
|
'uuid' => 'project',
|
|
'name' => 'My first project',
|
|
'description' => 'This is a test project in development',
|
|
'team_id' => 0,
|
|
]);
|
|
|
|
// Update the auto-created environment with a deterministic UUID
|
|
$project->environments()->first()->update(['uuid' => 'production']);
|
|
}
|
|
}
|