Files
Tat Dat Duong 2b729b47c2 Add CLI
2025-01-21 02:53:12 +01:00

10 lines
326 B
Bash
Executable File

#!/bin/bash
set -e # Exit on error
set -x # Print commands before execution
pnpm run build
rm -rf tests/graphs/.langgraph_api
npx -y concurrently -n "server,test" -k -s "command-1" \
"node dist/cli/cli.mjs dev --no-browser --config ./tests/graphs/langgraph.json" \
"npx -y wait-port -t 3000 localhost:2024 && vitest run"