Skip to content

Commit

Permalink
Add proof of concept
Browse files Browse the repository at this point in the history
  • Loading branch information
graysonguarino committed Feb 6, 2025
1 parent 34ed512 commit e75b14e
Show file tree
Hide file tree
Showing 38 changed files with 10,646 additions and 0 deletions.
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
44 changes: 44 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
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.i

29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/future.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
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
26 changes: 26 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!--
Hi there! Thanks for contributing to TuxTape.
Please take a moment to fill out the template to help us understand your changes better.
-->

**Issue Number:**
_Reference the issue this PR fixes._


**Description of Changes:**
_Provide a clear and concise explanation of what changes you made and why._


**Testing Done:**
_How did you test your changes? Share details like steps, tools used, or results._


**Terms of contribution:**

By submitting this pull request, I agree that this contribution is licensed under the terms of the Apache License, Version 2.0.


---

Thanks for submitting your pull request! We will review it as soon as possible.

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

0 comments on commit e75b14e

Please sign in to comment.