Really huge mass update; Getting everything up-to-spec and implementing a wide range of features
Deploy / Build (pull_request) Successful in 40s
Deploy / Build and Push Docker Image (pull_request) Has been skipped

This commit is contained in:
2026-07-26 14:24:18 +02:00
parent 2c563685bd
commit 8b53698f29
72 changed files with 4275 additions and 693 deletions
@@ -0,0 +1,6 @@
ALTER TABLE "RepoConfig" ADD COLUMN "preinstallTools" TEXT[] NOT NULL DEFAULT ARRAY[]::TEXT[];
ALTER TABLE "RepoConfig" ADD COLUMN "nodeVersion" VARCHAR(64);
UPDATE "RepoConfig"
SET "preinstallTools" = ARRAY['docker', 'node']::TEXT[],
"nodeVersion" = 'lts/*';