Gestion du serveur de développement local

Démarrez, arrêtez, redémarrez et gérez les services de développement local du projet Fenrir Ledger. Comprend la vérification de l'état et le suivi des logs pour les services app, stripe, odins-throne et proxy.

Spar Skills Guide Bot
DeveloppementDébutant
1004/08/2026
Claude Code
#dev-server#local-environment#service-management#fenrir-ledger

Recommandé pour


name: dev-server description: "Start, stop, restart, check status of, or tail logs for the Fenrir Ledger local dev environment."

Dev Server — Local Development Environment Manager

Manages all local development services for Fenrir Ledger.

Usage

/dev-server                         # Show status of all services
/dev-server start                   # Start all services
/dev-server stop                    # Stop all services
/dev-server restart                 # Restart all services
/dev-server <service> start         # Start a specific service
/dev-server <service> stop          # Stop a specific service
/dev-server <service> logs          # Tail a specific service's logs
/dev-server odins-throne start      # Start odins-throne-api + odins-throne-ui
/dev-server odins-throne restart    # Restart odins-throne-api + odins-throne-ui

Services

| Service | Alias | Port | Description | |---------|-------|------|-------------| | app | — | 9653 (WOLF) | Next.js dev server via vercel dev | | stripe | — | — | Stripe CLI webhook forwarding to app | | odins-throne-api | odins-throne | 3001 | Hono API/WebSocket server (K8s jobs, log streaming) | | odins-throne-ui | odins-throne | 3002 | Vite React UI (Odin's Throne — Hlidskjalf) | | proxy | — | 8001 | kubectl proxy for GKE cluster access |

odins-throne is a convenience alias that controls both odins-throne-api and odins-throne-ui together.

Scripts

Each service has its own management script in scripts/:

SCRIPT_DIR="$(git rev-parse --show-toplevel)/.claude/skills/dev-server/scripts"
bash "$SCRIPT_DIR/<service>.sh" <action>

Actions: start, stop, status, logs

Instructions

Parse the command

| Input | Action | |-------|--------| | (no args) or status | Run status on ALL services | | start | Run start on ALL services | | stop | Run stop on ALL services | | restart | Run stop then start on ALL | | odins-throne <action> | Run <action> on odins-throne-api + odins-throne-ui | | monitor <action> | Same as odins-throne | | <service> <action> | Run <action> on that service only | | logs | Run logs on app (default) | | <service> logs | Tail that service's log |

Execute

REPO_ROOT=$(git rev-parse --show-toplevel)
SCRIPT_DIR="$REPO_ROOT/.claude/skills/dev-server/scripts"

# Single service
bash "$SCRIPT_DIR/<service>.sh" <action>

# odins-throne (both odins-throne services)
bash "$SCRIPT_DIR/odins-throne-api.sh" <action>
bash "$SCRIPT_DIR/odins-throne-ui.sh" <action>

# All services (start order)
for svc in stripe app odins-throne-api odins-throne-ui proxy; do
  bash "$SCRIPT_DIR/$svc.sh" <action>
done

Report

Show a status table after any action:

Service         Port   Status
───────         ────   ──────
app             9653   running (pid 12345)
stripe          —      running (pid 12346)
odins-throne    3001   running (pid 12347)  ← odins-throne-api
                3002   running (pid 12348)  ← odins-throne-ui
proxy           8001   not running

Notes

  • odins-throne-api requires tsx (runs development/odins-throne/ via tsx watch)
  • odins-throne-ui requires vite (runs development/odins-throne-ui/ Vite dev server with HMR)
  • proxy requires kubectl configured for the GKE cluster
  • stripe requires Stripe CLI (brew install stripe/stripe-cli/stripe)
  • Open http://localhost:3002/ for the UI (Vite proxies API/WS to odins-throne-api on 3001)
Skills similaires