feat: new app API endpoint

This commit is contained in:
Andras Bacsai
2024-06-28 15:05:37 +02:00
parent 2dd17cfac5
commit 30b7e831c0
7 changed files with 300 additions and 105 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace App\Enums;
enum BuildPackTypes: string
{
case NIXPACKS = 'nixpacks';
case STATIC = 'static';
case DOCKERFILE = 'dockerfile';
case DOCKER_COMPOSE = 'docker-compose';
}