first commit

This commit is contained in:
2025-06-27 21:43:54 +02:00
commit 6ef4576cb2
33 changed files with 2185 additions and 0 deletions

12
web/build.gradle.kts Normal file
View File

@@ -0,0 +1,12 @@
description = "Umbrella : Web"
dependencies{
implementation("de.srsoftware:tools.http:6.0.0")
}
tasks.processResources {
System.out.println("Copying from dist…")
from("../frontend/dist") {
into("web")
}
}