feat(planning): ship holiday-aware planning and assistant upgrades

This commit is contained in:
2026-03-28 22:49:28 +01:00
parent 2a005794e7
commit 4f48afe7b4
151 changed files with 17738 additions and 1940 deletions
+5 -5
View File
@@ -2,9 +2,9 @@
set -euo pipefail
cd "$(dirname "$0")/.."
echo "Stopping Planarchy..."
echo "Stopping CapaKraken..."
# 1. Stop Next.js dev server
# 1. Stop any legacy local dev server
if [ -f /tmp/capakraken-dev.pid ]; then
PID=$(cat /tmp/capakraken-dev.pid)
if kill -0 "$PID" 2>/dev/null; then
@@ -20,8 +20,8 @@ fi
fuser -k 3100/tcp 2>/dev/null || true
# 2. Stop Docker services (keep data volumes)
echo " Stopping PostgreSQL + Redis..."
docker compose stop postgres redis 2>/dev/null || true
echo " Stopping app, PostgreSQL and Redis..."
docker compose --profile full stop app postgres redis 2>/dev/null || true
echo ""
echo "Planarchy stopped."
echo "CapaKraken stopped."