Files
Canto/dev.sh
bdim404 d12c1223f9 chore: update dev.sh
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 10:29:18 +08:00

8 lines
260 B
Bash
Executable File

#!/bin/bash
trap 'kill 0' EXIT
(cd qwen3-tts-backend && /home/bdim/miniconda3/envs/qwen3-tts/bin/uvicorn main:app --host 0.0.0.0 --port 8000 --reload 2>&1 | sed 's/^/[backend] /') &
(cd qwen3-tts-frontend && npm run dev 2>&1 | sed 's/^/[frontend] /') &
wait