Files
geointel/scripts/frontend_dev.sh
T
Codex 6ea3586a3e
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled
Initial GeoIntel V1 foundation
2026-06-16 23:36:32 +02:00

12 lines
301 B
Bash

#!/usr/bin/env bash
set -euo pipefail
if ! command -v npm >/dev/null 2>&1; then
echo "Node/npm is required but was not found in PATH." >&2
echo "Please install Node.js 18+ and ensure npm is available." >&2
exit 1
fi
cd "$(dirname "$0")/../frontend"
npm run start -- --host 0.0.0.0 --port 5173