Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.2 KB

File metadata and controls

54 lines (36 loc) · 1.2 KB

贡献指南

感谢你对本项目的关注!欢迎贡献代码、报告问题或提出建议。

如何贡献

报告问题

如果发现 bug 或有功能建议,请:

  1. 检查 Issues 中是否已有相关问题
  2. 如果没有,请创建新的 Issue,详细描述问题或建议

提交代码

  1. Fork 本仓库
  2. 创建你的特性分支 (git checkout -b feature/AmazingFeature)
  3. 提交你的更改 (git commit -m 'Add some AmazingFeature')
  4. 推送到分支 (git push origin feature/AmazingFeature)
  5. 打开一个 Pull Request

代码规范

  • 遵循 PEP 8 Python 代码规范
  • 添加适当的注释
  • 确保代码可以正常运行
  • 更新相关文档

开发环境设置

# 克隆仓库
git clone https://github.com/twischen-dot/tencent-asr-batch.git
cd tencent-asr-batch

# 安装依赖
pip install -r requirements.txt

# 设置环境变量
export TENCENT_SECRET_ID='your_id'
export TENCENT_SECRET_KEY='your_key'

测试

在提交代码前,请确保:

  • 代码可以正常运行
  • 没有语法错误
  • 环境变量检查正常工作
  • 帮助信息显示正确

感谢你的贡献!🎉