From e3fdb91ac581e5db9dfda08b588d8a2d764fe0ab Mon Sep 17 00:00:00 2001 From: Jaakko Vanhala Date: Thu, 9 Apr 2026 19:42:24 +0300 Subject: [PATCH] =?UTF-8?q?local.sh:=20buildaa=20frontendin=20ja=20k=C3=A4?= =?UTF-8?q?ynnist=C3=A4=C3=A4=20hubin=20yhdell=C3=A4=20komennolla?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Käyttö: ./network-poc/local.sh → http://localhost:3000 Co-Authored-By: Claude Opus 4.6 (1M context) --- network-poc/local.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 network-poc/local.sh diff --git a/network-poc/local.sh b/network-poc/local.sh new file mode 100755 index 0000000..1e53cdc --- /dev/null +++ b/network-poc/local.sh @@ -0,0 +1,14 @@ +#!/bin/bash +set -e + +echo "=== Kipinä Studio Local Development ===" + +# Frontend build +echo "[1/2] Rakennetaan frontend..." +cd "$(dirname "$0")/frontend" +npm run build --silent 2>&1 | tail -1 + +# Hub +echo "[2/2] Käynnistetään hub..." +cd ../hub +cargo run