crawlnicle/watch.sh
Tyler Hallada 3f744c0c50 Add auto-reload for frontend and backend
Also adds more just commands and improves the README docs.
2023-06-28 01:23:11 -04:00

12 lines
123 B
Bash
Executable File

#!/usr/bin/env sh
trap "kill 0" SIGINT
just watch-frontend & P1=$!
P1=$!
just watch-backend & P2=$!
P2=$!
wait $P1 $P2