9 lines
145 B
Bash
Executable File
9 lines
145 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}" npm run start |