Better build/watch

This commit is contained in:
Thomas Miceli
2023-04-06 11:47:30 +02:00
parent 9fadfe7cde
commit b606b67d43
10 changed files with 301 additions and 66 deletions

8
watch.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
set -euo pipefail
make watch_frontend &
make watch_backend &
trap 'kill $(jobs -p)' EXIT
wait