From 0c5e8600bde85ecc0f6158e736ae784238bbeba5 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Thu, 25 Jan 2024 08:59:11 +0100 Subject: [PATCH] Update build pack settings and port values --- app/Livewire/Project/New/PublicGitRepository.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Livewire/Project/New/PublicGitRepository.php b/app/Livewire/Project/New/PublicGitRepository.php index dbf79958b..8e1fcb5f1 100644 --- a/app/Livewire/Project/New/PublicGitRepository.php +++ b/app/Livewire/Project/New/PublicGitRepository.php @@ -61,9 +61,11 @@ class PublicGitRepository extends Component { if ($this->build_pack === 'nixpacks') { $this->show_is_static = true; + $this->port = 3000; } else if ($this->build_pack === 'static') { $this->show_is_static = false; $this->is_static = false; + $this->port = 80; } else { $this->show_is_static = false; $this->is_static = false;