10 lines
221 B
Bash
Executable File
10 lines
221 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd /home/dsyoon/workspace/meeting_ai/server
|
|
|
|
npm install
|
|
npm run build
|
|
|
|
PORT="${PORT:-8018}" nohup npm run start > server.log 2>&1 &
|
|
echo "Server started (PID: $!). Logs: server.log" |