From 9147a06c00ae5c33d945afd10973817e4258857e Mon Sep 17 00:00:00 2001 From: jules Date: Sat, 20 Jun 2026 21:23:11 +1000 Subject: [PATCH] chore: fix start/stop.sh to use this app's name, not the template's (frontend audit rank 15) Co-Authored-By: Claude Opus 4.8 (1M context) --- start.sh | 4 ++-- stop.sh | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/start.sh b/start.sh index d162abb..c3fee5d 100755 --- a/start.sh +++ b/start.sh @@ -9,7 +9,7 @@ LOG_FILE=".demo.log" if [ -f "$PID_FILE" ]; then existing="$(cat "$PID_FILE")" if [ -n "$existing" ] && kill -0 "$existing" 2>/dev/null; then - echo "crema-app-aifirst-template already running (pid $existing)" + echo "arcadia-admin already running (pid $existing)" exit 0 fi rm -f "$PID_FILE" @@ -20,4 +20,4 @@ pid=$! echo "$pid" >"$PID_FILE" disown "$pid" 2>/dev/null || true -echo "crema-app-aifirst-template started (pid $pid) — logs: $LOG_FILE" +echo "arcadia-admin started (pid $pid) — logs: $LOG_FILE" diff --git a/stop.sh b/stop.sh index ee344e3..4aba6c7 100755 --- a/stop.sh +++ b/stop.sh @@ -6,7 +6,7 @@ cd "$(dirname "$0")" PID_FILE=".demo.pid" if [ ! -f "$PID_FILE" ]; then - echo "crema-app-aifirst-template not running (no .demo.pid)" + echo "arcadia-admin not running (no .demo.pid)" exit 0 fi @@ -15,9 +15,9 @@ pid="$(cat "$PID_FILE")" if [ -n "$pid" ] && kill -0 "$pid" 2>/dev/null; then pkill -P "$pid" 2>/dev/null || true kill "$pid" 2>/dev/null || true - echo "crema-app-aifirst-template stopped (pid $pid)" + echo "arcadia-admin stopped (pid $pid)" else - echo "crema-app-aifirst-template pid $pid not alive, cleaning up" + echo "arcadia-admin pid $pid not alive, cleaning up" fi rm -f "$PID_FILE" -- 2.48.1