From db54d2874ed9db48b16a317e87787cc80ffb2c16 Mon Sep 17 00:00:00 2001 From: Vijay Date: Sat, 13 Sep 2025 10:05:09 +0530 Subject: [PATCH] shell script to run both processes at same time --- commad.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 commad.sh diff --git a/commad.sh b/commad.sh new file mode 100644 index 0000000..33371e3 --- /dev/null +++ b/commad.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Navigate to the API folder and start the server +cd ./api +npm start & + +# Navigate to the client folder and start the client +cd ../client +npm run dev \ No newline at end of file