From e26578a1fa64a1983a17a4a8151bc57f45392efe Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 11 May 2024 12:26:09 -0400 Subject: [PATCH] Add run.sh script to help running all of them at the same time --- run.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 run.sh diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..d714b8d --- /dev/null +++ b/run.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +trap 'kill $(jobs -p)' EXIT + +cargo run -q --package kawari --bin kawari-admin & +cargo run -q --package kawari --bin kawari-frontier & +cargo run -q --package kawari --bin kawari-login & +cargo run -q --package kawari --bin kawari-patch & +wait \ No newline at end of file