change server start.
Some checks are pending
Node.js CI / build (push) Waiting to run
Build / build (push) Successful in 2m19s

This commit is contained in:
Michael Mainguy 2025-12-30 07:11:36 -06:00
parent bd833e236a
commit 33019c116b

View File

@ -24,8 +24,5 @@ jobs:
- name: Restart Server
run: |
# Kill existing process on port 3001
lsof -ti:3001 | xargs kill -9 2>/dev/null || true
# Start server in background with nohup
nohup npm run start > /tmp/immersive.log 2>&1 &