Initial commit after re-install

This commit is contained in:
2026-02-25 19:11:30 +09:00
commit 7d29779a1f
37 changed files with 6505 additions and 0 deletions

18
server/run.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -euo pipefail
cd /home/dsyoon/workspace/meeting_ai/server
PORT="${PORT:-8018}"
if lsof -ti tcp:"${PORT}" >/dev/null 2>&1; then
echo "Stopping existing server on port ${PORT}..."
lsof -ti tcp:"${PORT}" | xargs -r kill -9
sleep 1
fi
npm install
npm run build
PORT="${PORT}" nohup npm run start > server.log 2>&1 &
echo "Server started (PID: $!). Logs: server.log"