chore: add helper script for running everything at once

This commit is contained in:
Paul Makles
2024-10-28 14:15:48 +00:00
parent 1e72f7bc77
commit 2fcc714546
2 changed files with 18 additions and 1 deletions

13
scripts/start.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -e
cargo build \
--bin revolt-delta \
--bin revolt-bonfire \
--bin revolt-autumn \
--bin revolt-january
trap 'pkill -f revolt-' SIGINT
cargo run --bin revolt-delta &
cargo run --bin revolt-bonfire &
cargo run --bin revolt-autumn &
cargo run --bin revolt-january