Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding feature request, bug report, and PR template #2

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .config/tuxtape-dashboard-config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[keybindings.Normal]
q = "Quit"
shift-h = "TabLeft"
shift-l = "TabRight"
h = "PaneLeft"
l = "PaneRight"
j = "ScrollDown"
k = "ScrollUp"
"<Enter>" = "Select"

[database]
server_url = "127.0.0.1:50051"
use_tls = false
# tls_cert_path = "put path here if use_tls = true"
3 changes: 3 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export TUXTAPE_DASHBOARD_CONFIG=`pwd`/.config
export TUXTAPE_DASHBOARD_DATA=`pwd`/.data
export TUXTAPE_DASHBOARD_LOG_LEVEL=debug
43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
name: Bug report - TuxTape
about: Tell us about the issue you've encountered with TuxTape, and we'll do our best to help you!
labels: status/needs-triage, type/bug
---

<!--
Hello! Thank you for letting us know about a problem. A few tips to make things smoother:
- Please check if a similar issue has been reported (even closer ones might help).
- Please share as much detail as you can about the problem and your setup.
- Please include any error messages or log that might help us understand the issue.
-->



### **What did you expect to happen?**
_Describe what you thought would happen._


### **What actually happened?**
_Tell us what happened instead, including any error messages, screenshots, or logs._



### **Steps to reproduce the issue:**
_Help us understand how to recreate the problem. The more detailed, the better!_

1. Step 1
2. Step 2
3. ...



### **Your setup details:**
- **TuxTape version**:
- **Operating System**:
- **Anything else we should know?**:



---

Thanks for taking the time to report this! We'll review it and get back to you as soon as we can.
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Feature Request
about: Suggest an idea or improvement for the project
labels: status/needs-triage, type/enhancement
---

<!--
Thank you for contributing to TuxTape! Please take a moment to fill out this template.
Tips:
1. Please search for similar requests, including closed issues before submitting.
2. Please provide as much detail as possible about your use case.
-->

### **What would you like?**
_Tell us about the feature or improvement you have in mind. What problem does it solve, or how will it help you?_


### **Why do you need this?**
_Share how this feature will make your work easier, more efficient, or just more fun!_

### **Anything else to add?**
_If you have extra details, screenshots, or context, we would love to see it!_


## **Your setup:**
-**Version**:
-**Operating System**:
-**Anything else?**:
10 changes: 10 additions & 0 deletions .github/dependency-review-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
fail_on_severity: 'critical'
allow_licenses:
- Apache-2.0
- 0BSD
- BSD-3-Clause
- ISC
- MIT
- MPL-2.0
- Unicode-3.0
- Zlib
16 changes: 16 additions & 0 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Dependency Review'
on: [pull_request]

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v4
with:
config-file: './.github/dependency-review-config.yml'
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
target/
.vscode/
*.DS_Store
Loading