init
This commit is contained in:
19
run.sh
Executable file
19
run.sh
Executable file
@@ -0,0 +1,19 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
cd /home/dsyoon/workspace/tts
|
||||||
|
|
||||||
|
CONDA_BASE="/home/dsyoon/workspace/miniconda3"
|
||||||
|
source "${CONDA_BASE}/bin/activate" tts
|
||||||
|
export LD_LIBRARY_PATH="${CONDA_PREFIX}/lib:${LD_LIBRARY_PATH:-}"
|
||||||
|
|
||||||
|
PORT="${PORT:-8025}"
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
nohup uvicorn app.main:app --reload --host 127.0.0.1 --port 8025 > server.log &
|
||||||
|
echo "Server started (PID: $!). Logs: server.log"
|
||||||
Reference in New Issue
Block a user