Harden build scripts

This commit is contained in:
dsyoon
2026-01-28 21:44:17 +09:00
parent 030bfe851c
commit f9904a6579
2 changed files with 11 additions and 2 deletions

View File

@@ -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
PORT="${PORT:-8018}" npm run start