Exploratory client

This commit is contained in:
Jeffrey Morgan
2023-06-23 14:04:39 -04:00
parent db81d81b23
commit 2f4aa42d2e
8 changed files with 6605 additions and 89 deletions

3
dev.sh
View File

@@ -2,7 +2,7 @@
# Function to handle Ctrl+C
handle_sigint() {
kill $pid1 $pid2 $pid3
kill $pid1 $pid2
exit
}
@@ -12,7 +12,6 @@ trap 'handle_sigint' SIGINT
# Start three processes in the background
npm run dev --prefix ./client & pid1=$!
npm start --prefix ./desktop & pid2=$!
go run -C ./server . & pid3=$!
# Wait for all processes to finish
wait