From 76848b396c237f7b09e1e74fc1245723c8793e16 Mon Sep 17 00:00:00 2001 From: Max Richter Date: Sun, 5 Oct 2025 23:55:44 +0200 Subject: [PATCH] feat: default playground path to "/app/playground" --- server/cmd/marka-server/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/cmd/marka-server/main.go b/server/cmd/marka-server/main.go index 311a75f..7335c71 100644 --- a/server/cmd/marka-server/main.go +++ b/server/cmd/marka-server/main.go @@ -24,7 +24,7 @@ func main() { var roots multi flag.Var(&roots, "root", "repeatable; specify multiple -root flags") addr := flag.String("addr", ":8080", "listen address") - playgroundRoot := flag.String("playground-root", "", "path to playground build directory") + playgroundRoot := flag.String("playground-root", "/app/playground", "path to playground build directory") flag.Parse() if *playgroundRoot != "" {