Files
audio2text/.gitignore
audio2text dev 1e355e6138 docs: 新增离线部署导入镜像说明 + 更新功能特性
README:
- 新增「离线部署(导入预构建镜像)」章节:docker load + 启动命令
- 功能特性更新:设置页、任务删除、进度细分、离线运行、/docs 公开

docs/DOCKER.md:
- 新增「导入预构建镜像(离线部署)」完整章节:
  前置要求、导出步骤、需拷贝文件清单、导入启动命令、离线说明、后续更新代码

.gitignore:
- 排除 *.tar(导出的镜像文件不入库)
2026-07-11 11:37:52 +08:00

25 lines
324 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Python
.venv/
__pycache__/
*.py[cod]
*.egg-info/
.pytest_cache/
# 运行时数据(走 docker volume不入库
data/
data-gpu/
/models/
config.yaml
*.pid
logs/
# 编辑器
.vscode/
.idea/
# 测试数据与脚本(本地测试用,不入库)
/test/
# 导出的 Docker 镜像 tar太大不入库
*.tar