feat(buildpack): add Railpack as a build pack option

This commit is contained in:
Aditya Tripathi
2026-03-23 17:12:02 +00:00
parent 8be226788e
commit 793077d74f
18 changed files with 485 additions and 28 deletions
@@ -45,7 +45,7 @@ class GithubPrivateRepositoryDeployKey extends Component
public string $branch;
public $build_pack = 'nixpacks';
public $build_pack = 'railpack';
public bool $show_is_static = true;
@@ -95,7 +95,7 @@ class GithubPrivateRepositoryDeployKey extends Component
public function updatedBuildPack()
{
if ($this->build_pack === 'nixpacks') {
if ($this->build_pack === 'nixpacks' || $this->build_pack === 'railpack') {
$this->show_is_static = true;
$this->port = 3000;
} elseif ($this->build_pack === 'static') {