10 lines
276 B
Bash
Executable File
10 lines
276 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
PORT="${DOUYIN_WORKBENCH_PORT:-3618}"
|
|
SESSION_NAME="${DOUYIN_WORKBENCH_SESSION:-storyforge-douyin-workbench}"
|
|
|
|
screen -S "$SESSION_NAME" -X quit >/dev/null 2>&1 || true
|
|
lsof -tiTCP:"$PORT" -sTCP:LISTEN | xargs -r kill
|
|
echo "douyin workbench stopped: $PORT"
|