mirror of
https://github.com/frappe/gunicorn.git
synced 2026-07-01 10:11:30 +08:00
Redirect issue creation to GitHub Discussions for proper triage: - Disable blank issues, redirect to discussion categories - Add structured discussion templates for bugs, features, questions - Add preapproved issue template for maintainer use only - Update CONTRIBUTING.md to reflect new workflow
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
title: "[Question] "
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Have a question about Gunicorn?
|
|
|
|
Before asking, please check:
|
|
- [Documentation](https://docs.gunicorn.org/)
|
|
- [FAQ](https://docs.gunicorn.org/en/latest/faq.html)
|
|
- [Settings Reference](https://docs.gunicorn.org/en/latest/settings.html)
|
|
- [Existing discussions](https://github.com/benoitc/gunicorn/discussions)
|
|
|
|
- type: textarea
|
|
id: question
|
|
attributes:
|
|
label: Question
|
|
description: What would you like to know?
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: context
|
|
attributes:
|
|
label: Context
|
|
description: Any relevant context (your setup, what you've tried, etc.)
|
|
placeholder: |
|
|
I'm running gunicorn with...
|
|
I've tried...
|
|
validations:
|
|
required: false
|
|
|
|
- type: textarea
|
|
id: config
|
|
attributes:
|
|
label: Configuration (if relevant)
|
|
description: Your gunicorn configuration
|
|
render: bash
|
|
validations:
|
|
required: false
|
|
|
|
- type: checkboxes
|
|
id: checklist
|
|
attributes:
|
|
label: Checklist
|
|
options:
|
|
- label: I have checked the documentation and FAQ
|
|
required: true
|
|
- label: I have searched existing discussions
|
|
required: true
|