-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'next' into Feat--Customize-Install-Directory
- Loading branch information
Showing
39 changed files
with
2,637 additions
and
998 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
namespace App\Enums; | ||
|
||
enum NewDatabaseTypes: string | ||
{ | ||
case POSTGRESQL = 'postgresql'; | ||
case MYSQL = 'mysql'; | ||
case MONGODB = 'mongodb'; | ||
case REDIS = 'redis'; | ||
case MARIADB = 'mariadb'; | ||
case KEYDB = 'keydb'; | ||
case DRAGONFLY = 'dragonfly'; | ||
case CLICKHOUSE = 'clickhouse'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
namespace App\Enums; | ||
|
||
enum NewResourceTypes: string | ||
{ | ||
case PUBLIC = 'public'; | ||
case PRIVATE_GH_APP = 'private-gh-app'; | ||
case PRIVATE_DEPLOY_KEY = 'private-deploy-key'; | ||
case DOCKERFILE = 'dockerfile'; | ||
case DOCKER_COMPOSE_EMPTY = 'docker-compose-empty'; | ||
case DOCKER_IMAGE = 'docker-image'; | ||
case SERVICE = 'service'; | ||
case POSTGRESQL = 'postgresql'; | ||
case MYSQL = 'mysql'; | ||
case MONGODB = 'mongodb'; | ||
case REDIS = 'redis'; | ||
case MARIADB = 'mariadb'; | ||
case KEYDB = 'keydb'; | ||
case DRAGONFLY = 'dragonfly'; | ||
case CLICKHOUSE = 'clickhouse'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.