diff --git a/client/run.sh b/client/run.sh index 8e56280..fac6526 100755 --- a/client/run.sh +++ b/client/run.sh @@ -1,3 +1,7 @@ +#!/usr/bin/env bash +set -euo pipefail + cd /home/dsyoon/workspace/meeting_ai/client + npm install -npm run dev \ No newline at end of file +npm run build \ No newline at end of file diff --git a/server/run.sh b/server/run.sh index 4084c14..ccfd961 100755 --- a/server/run.sh +++ b/server/run.sh @@ -1,4 +1,9 @@ +#!/usr/bin/env bash +set -euo pipefail + cd /home/dsyoon/workspace/meeting_ai/server + npm install npm run build -PORT=8018 npm run start \ No newline at end of file + +PORT="${PORT:-8018}" npm run start \ No newline at end of file