From fae5871f449e637dc5328d78dce3dddd5dc08af0 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Sun, 4 Jul 2021 11:34:34 +0100 Subject: [PATCH] Disable blank issues #nolog --- .github/ISSUE_TEMPLATE/config.yml | 5 +++++ .github/ISSUE_TEMPLATE/question.md | 14 -------------- 2 files changed, 5 insertions(+), 14 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/question.md diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..2b0ce488 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: GitHub Discussions + url: https://github.com/miguelgrinberg/Flask-SocketIO/discussions + about: Ask questions here. diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md deleted file mode 100644 index 3e61390e..00000000 --- a/.github/ISSUE_TEMPLATE/question.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -name: Question -about: Ask a question about this project -title: '' -labels: '' -assignees: '' - ---- - -**Your question** -Enter your question here. Please be concise and include code if necessary. If you are getting errors, please include the complete error message, including the stack trace. - -**Logs** -Please provide relevant logs from the server and the client. On the server, add the `logger=True` and `engineio_logger=True` arguments to your `SocketIO()` object to get logs dumped on your terminal. The same arguments can be used on the [python-socketio's client](https://github.com/miguelgrinberg/python-socketio). If you are using the JavaScript client, see [here](https://socket.io/docs/logging-and-debugging/) for how to enable logs.