2023-03-24 14:47:58 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Database\Seeders;
|
|
|
|
|
2023-03-27 12:31:42 +00:00
|
|
|
use App\Models\PrivateKey;
|
2023-03-24 14:47:58 +00:00
|
|
|
use App\Models\Server;
|
|
|
|
use App\Models\Team;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
|
|
|
|
class ServerSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*/
|
|
|
|
public function run(): void
|
|
|
|
{
|
|
|
|
$root_team = Team::find(1);
|
2023-03-27 12:31:42 +00:00
|
|
|
$private_key_1 = PrivateKey::find(1);
|
2023-03-28 13:47:37 +00:00
|
|
|
|
2023-03-28 10:09:34 +00:00
|
|
|
Server::create([
|
2023-03-24 14:47:58 +00:00
|
|
|
'id' => 1,
|
2023-03-28 13:47:37 +00:00
|
|
|
'name' => "testing-local-docker-container",
|
2023-03-24 14:47:58 +00:00
|
|
|
'description' => "This is a test docker container",
|
|
|
|
'ip' => "coolify-testing-host",
|
|
|
|
'team_id' => $root_team->id,
|
2023-03-27 12:31:42 +00:00
|
|
|
'private_key_id' => $private_key_1->id,
|
2023-03-24 14:47:58 +00:00
|
|
|
]);
|
2023-03-24 21:15:36 +00:00
|
|
|
Server::create([
|
|
|
|
'id' => 2,
|
2023-03-28 13:47:37 +00:00
|
|
|
'name' => "testing-local-docker-container-2",
|
2023-03-24 21:15:36 +00:00
|
|
|
'description' => "This is a test docker container",
|
|
|
|
'ip' => "coolify-testing-host-2",
|
|
|
|
'team_id' => $root_team->id,
|
2023-03-27 12:31:42 +00:00
|
|
|
'private_key_id' => $private_key_1->id,
|
2023-03-24 21:15:36 +00:00
|
|
|
]);
|
2023-03-28 13:47:37 +00:00
|
|
|
Server::create([
|
|
|
|
'id' => 3,
|
|
|
|
'name' => "localhost",
|
|
|
|
'description' => "This is the local machine",
|
2023-03-29 10:27:02 +00:00
|
|
|
'user' => 'root',
|
2023-03-31 10:26:56 +00:00
|
|
|
'ip' => "coolify-testing-host",
|
2023-03-28 13:47:37 +00:00
|
|
|
'team_id' => $root_team->id,
|
|
|
|
'private_key_id' => $private_key_1->id,
|
|
|
|
]);
|
2023-03-24 14:47:58 +00:00
|
|
|
}
|
|
|
|
}
|