Run server in background

This commit is contained in:
dsyoon
2026-01-28 22:05:21 +09:00
parent 4fb32d1a81
commit 63f759e5e9

View File

@@ -6,4 +6,5 @@ cd /home/dsyoon/workspace/meeting_ai/server
npm install
npm run build
PORT="${PORT:-8018}" npm run start
PORT="${PORT:-8018}" nohup npm run start > server.log 2>&1 &
echo "Server started (PID: $!). Logs: server.log"