Write script for rebuilding and running the client and server

This commit is contained in:
Camden Dixie O'Brien 2025-02-25 17:34:08 +00:00
parent b522ef8a98
commit 046deccc26

13
scripts/build-run.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
set -e
cd client
if [ ! -d build ]; then
meson setup build client
fi
meson compile -C build
build/src/study-system-client &
cd ..
cd server
rebar3 shell --apps study_system_server