Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mpapenbr committed Aug 8, 2023
0 parents commit 5c7b184
Show file tree
Hide file tree
Showing 19 changed files with 2,555 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Check http://editorconfig.org for more information
# This is the main config file for this project:
root = true

[*]
charset = utf-8
end_of_line = crlf
insert_final_newline = true
indent_style = tab
indent_size = 4
trim_trailing_whitespace = true

[Makefile]
indent_style = tab # older versions of GNU Make do not work well with spaces

[*.{yaml,yml}]
indent_size = 2
indent_style = space

[*.json]
indent_size = 2
indent_style = space


[*.{md,rst}]
trim_trailing_whitespace = false

[*.{diff,patch}]
trim_trailing_whitespace = false
78 changes: 78 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
---
name: πŸ› Bug Report
about: Something isn't working as expected
title: "Bug: "
labels: bug
assignees:
---

## πŸ› Bug Report

<!--
A clear and brief description of what the bug is
Something along the lines of: "I was doing ______ and then ______ happened"
-->

## πŸ”¬ System Info

<!--
Run the commands as needed, and paste their output
-->

### Go Version

<!-- Output of `go version` - replace the second line with your output -->
<pre>
$ go version
go version go1.20.1 linux/amd64
</pre>

### Go Env

<details>
<summary><code>go env</code></summary><br>
<pre>
$ go env
<!-- Output of `go env` goes here -->
</pre></details>

### Does this issue exist with Go `v1.20`?

<!-- Yes/No -->

## Details

<!--
Make sure to be as detailed as possible!
As developers, having more details to work with
is always preferable to the reverse!!
-->

### What did you do?

<!--
Steps to reproduce the error (if possible).
If applicable, minimal code to reproduce this issue is
good, using `play.golang.org` for Go code is recommended
If not, simply add what you were doing when the issue
occurred
-->

### What did you expect to see?

<!--
The expected behaviour, add as many details as possible
-->

### What did you see instead?

<!--
Add a detailed write-up of what actually happened.
Add any screenshots/recordings/log dumps/error message displayed,
etc as well
-->
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Configuration: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository

blank_issues_enabled: false
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: πŸš€ Feature request
about: Suggest a new idea
title: 'Feature: '
labels: enhancement
assignees:
---

## πŸš€ Feature Request

<!--
A clear and detailed description of the feature proposal
-->

## Background

<!--
Describe why this is feature needed. Points to answer in
this section;
- How would this feature benefit the community as a whole?
- Any alternative solutions you've considered?
-->

## Additional Context

<!-- Add any other context or screenshots about the feature request here. -->
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: ❓ Question
about: Ask a question
title: 'Query: '
labels: question
assignees:
---

## ❓ Question

<!-- What is your question -->

How can I [...]?

Is it possible to [...]?

### Additional context

<!--
Add any other context or screenshots regarding your query.
Remove this section if there is nothing to add
-->

---

<!-- Mark the checkbox with an `x` to confirm (like `[x]`) -->
- [ ] I've searched the project's [`issues`](../issues/?q=is%3Aissue), none of the existing issues match my query
19 changes: 19 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## Description

<!--
Add a detailed description for the changes made in this pull request
If your PR addresses an existing issue, add it here.
Use the template string - `This pull request resolves #<issue-number>`
-->

## Type of Change

<!-- Mark with an `x` all the checkboxes that apply (like `[x]`) -->

- [ ] πŸ“š Documentation (Non-breaking change; Changes in the documentation)
- [ ] πŸ”§ Bug fix (Non-breaking change; Fixes an existing bug)
- [ ] πŸ₯‚ Improvement (Non-breaking change; Improves existing feature)
- [ ] πŸš€ New feature (Non-breaking change; Adds functionality)
- [ ] πŸ” Security fix (Non-breaking change; Patches a security issue)
- [ ] πŸ’₯ Breaking change (Breaks existing functionality)
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"

# Auto assign PRs raised to this account on Github
assignees:
- "mpapenbr"

reviewers:
- "mpapenbr"

# Check for updates to dependencies once a week - Saturday
schedule:
interval: "weekly"
day: "saturday"
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Cache folder generated by IDE

.idea/**

# Ignore directories containing binaries generated and other stuff
tmp/**
bin/**
coverage/**
dist/**
*.exe
*.dump

# Directories require atleast one file to be tracked by git.
!tmp/.gitkeep
!bin/.gitkeep
!coverage/.gitkeep

# Ignore config files from project root, keeping sample config files
/configs**
!/configs.**.sample

# Ignore private dotfiles
.gitconfig.local*
.npmrc
Loading

0 comments on commit 5c7b184

Please sign in to comment.