Add root team + localhost (coolify host) in prod seeder

This commit is contained in:
Andras Bacsai
2023-04-14 12:54:29 +02:00
parent 06e00ffccb
commit ff5ff7f310
14 changed files with 82 additions and 28 deletions

View File

@@ -4,6 +4,7 @@ namespace Database\Seeders;
use App\Models\PrivateKey;
use App\Models\Project;
use App\Models\Server;
use App\Models\Team;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\Storage;
@@ -12,6 +13,7 @@ class ProductionSeeder extends Seeder
{
public function run(): void
{
// Save SSH Keys for the Coolify Host
$coolify_key_name = "id.root@host.docker.internal";
$coolify_key = Storage::disk('local')->get("ssh-keys/{$coolify_key_name}");
$coolify_key_in_database = PrivateKey::where('name', 'Coolify Host');
@@ -21,10 +23,32 @@ class ProductionSeeder extends Seeder
}
if ($coolify_key && !$coolify_key_in_database->exists()) {
PrivateKey::create([
'name' => 'Coolify Host',
'description' => 'The private key for the Coolify host machine.',
'id' => 0,
'name' => 'localhost\'s key',
'description' => 'The private key for the Coolify host machine (localhost).',
'private_key' => $coolify_key,
]);
}
// Add first Team if it doesn't exist
if (Team::find(0) == null) {
Team::create([
'id' => 0,
'name' => "Root's Team",
'personal_team' => true,
]);
}
// Add Coolify host (localhost) as Server if it doesn't exist
if (Server::find(0) == null) {
Server::create([
'id' => 0,
'name' => "localhost",
'description' => "This is the local machine",
'user' => 'root',
'ip' => "host.docker.internal",
'team_id' => 0,
'private_key_id' => 0,
]);
}
}
}