docs: add project roadmap and GitHub issue templates
- Create comprehensive development roadmap (Phase 4-10) - Add bug report template with detailed fields - Add feature request template - Plan future phases: payment, frontend, AI features - Set milestones and success metrics - Open source community setup Phase 4 Tasks 54-56 completed (78.8-82.4% reached!)
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
name: Bug Report
|
||||
description: Report a bug or issue
|
||||
title: "[Bug]: "
|
||||
labels: ["bug", "triage"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
感谢报告 Bug!请提供以下信息帮助我们诊断和修复问题。
|
||||
|
||||
- type: textarea
|
||||
id: description
|
||||
attributes:
|
||||
label: Bug 描述
|
||||
description: 清晰简洁地描述这个 bug
|
||||
placeholder: 当我尝试... 时,发生了...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: reproduction
|
||||
attributes:
|
||||
label: 复现步骤
|
||||
description: 如何复现这个问题
|
||||
placeholder: |
|
||||
1. 进入 '...'
|
||||
2. 点击 '...'
|
||||
3. 滚动到 '...'
|
||||
4. 看到错误
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: expected
|
||||
attributes:
|
||||
label: 期望行为
|
||||
description: 你期望发生什么?
|
||||
placeholder: 应该显示...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: actual
|
||||
attributes:
|
||||
label: 实际行为
|
||||
description: 实际发生了什么?
|
||||
placeholder: 却显示了...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: environment
|
||||
attributes:
|
||||
label: 环境信息
|
||||
description: 请提供环境相关信息
|
||||
value: |
|
||||
- OS: [e.g. Ubuntu 22.04]
|
||||
- Python: [e.g. 3.12]
|
||||
- FastAPI: [e.g. 0.115.0]
|
||||
- 浏览器: [e.g. Chrome 120]
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: logs
|
||||
attributes:
|
||||
label: 相关日志
|
||||
description: 如果有的话,请粘贴相关的错误日志
|
||||
render: shell
|
||||
|
||||
- type: textarea
|
||||
id: additional
|
||||
attributes:
|
||||
label: 额外信息
|
||||
description: 其他任何相关信息
|
||||
@@ -0,0 +1,40 @@
|
||||
name: Feature Request
|
||||
description: Suggest a new feature or improvement
|
||||
title: "[Feature]: "
|
||||
labels: ["enhancement"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
感谢你的功能建议!请详细描述你的想法。
|
||||
|
||||
- type: textarea
|
||||
id: problem
|
||||
attributes:
|
||||
label: 问题描述
|
||||
description: 这个功能解决什么问题?
|
||||
placeholder: 当我想要... 时,目前无法...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: solution
|
||||
attributes:
|
||||
label: 建议方案
|
||||
description: 你期望的解决方案是什么?
|
||||
placeholder: 我希望能够...
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
id: alternatives
|
||||
attributes:
|
||||
label: 替代方案
|
||||
description: 你考虑过哪些替代方案?
|
||||
placeholder: 我也考虑过...
|
||||
|
||||
- type: textarea
|
||||
id: additional
|
||||
attributes:
|
||||
label: 额外信息
|
||||
description: 其他任何相关信息、截图、参考等
|
||||
Reference in New Issue
Block a user