ollama/dev.sh

18 lines
304 B
Bash
Raw Normal View History

2023-06-22 16:45:31 +00:00
#!/bin/bash
# Function to handle Ctrl+C
handle_sigint() {
2023-06-23 18:04:39 +00:00
kill $pid1 $pid2
2023-06-22 16:45:31 +00:00
exit
}
# Trap Ctrl+C signal
trap 'handle_sigint' SIGINT
# Start three processes in the background
npm run dev --prefix ./client & pid1=$!
npm start --prefix ./desktop & pid2=$!
# Wait for all processes to finish
wait