feat/add webhook ID to App model and implement webhook deployment functionality

This commit is contained in:
biersoeckli
2024-12-29 15:05:52 +00:00
parent cd3b6881b4
commit 2e714f0ab1
8 changed files with 123 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "App" ADD COLUMN "webhookId" TEXT;

View File

@@ -149,6 +149,8 @@ model App {
cpuReservation Int?
cpuLimit Int?
webhookId String?
appDomains AppDomain[]
appPorts AppPort[]
appVolumes AppVolume[]