blob: 246fcbffdca3c256fbea4704be984dd7e202b2b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
# Run the Qwen3-TTS server
set -e
cd "$(dirname "$0")"
# Activate virtual environment if it exists
if [ -d ".venv" ]; then
source .venv/bin/activate
fi
# Use exec to replace shell with python so Ctrl+C works properly
exec python server.py
|