mesa-react / run_all.sh
Guilherme Silberfarb Costa
Initial commit for HF Space
d6c9678
raw
history blame contribute delete
177 Bytes
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")" && pwd)"
(
cd "$ROOT_DIR/backend"
./run_backend.sh
) &
(
cd "$ROOT_DIR/frontend"
npm run dev
)