QR code & clickable URL on TV lobby, BOOST card-only, remove METEOR_STRIKE/TELEPORT, fix vite base paths for production, Dockerfile with frontend builds, Makefile with podman

This commit is contained in:
2026-06-24 20:32:34 +02:00
parent 5e2ab43ca3
commit 8531864b25
30 changed files with 3036 additions and 629 deletions
+13
View File
@@ -0,0 +1,13 @@
REGISTRY := gitea.korbel.network
IMAGE := nico/spacerace
TAG := latest
ENGINE := podman
.PHONY: build push
build:
$(ENGINE) build -f server/Dockerfile -t $(IMAGE):$(TAG) .
push: build
$(ENGINE) tag $(IMAGE):$(TAG) $(REGISTRY)/$(IMAGE):$(TAG)
$(ENGINE) push $(REGISTRY)/$(IMAGE):$(TAG)