- Add docker/ directory with Dockerfile for backend and frontend
- Backend: pytorch/pytorch CUDA base image with all qwen_tts deps
- Frontend: multi-stage nginx build with /api/ proxy to backend
- docker-compose.yml (CPU) + docker-compose.gpu.yml (GPU overlay)
- Fix /users/me returning 404 due to missing route (was caught by /{user_id})
- Update .gitignore to exclude docker/models, docker/data, docker/.env
- Update README and README.zh.md with Docker deployment instructions
Images: bdim404/qwen3-tts-backend, bdim404/qwen3-tts-frontend
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
41 lines
526 B
Plaintext
41 lines
526 B
Plaintext
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
.idea/
|
|
.vscode/
|
|
venv/
|
|
env/
|
|
Qwen/
|
|
docker/models/
|
|
docker/data/
|
|
docker/.env
|
|
qwen3-tts-frontend/node_modules/
|
|
qwen3-tts-frontend/dist/
|
|
qwen3-tts-frontend/.env
|
|
qwen3-tts-frontend/.env.local
|
|
CLAUDE.md
|
|
样本.mp3
|
|
aliyun.md
|
|
nginx.conf
|
|
deploy.md
|
|
qwen3-tts-backend/scripts
|
|
qwen3-tts-backend/examples
|
|
qwen3-tts-backend/qwen3-tts.service
|
|
qwen3-tts-frontend/.env.production
|