mirror of
https://github.com/langchain-ai/langgraphjs-api.git
synced 2026-07-22 09:15:35 -04:00
10 lines
326 B
Bash
Executable File
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" |