generated from Templates/Baseline
Initial commit
This commit is contained in:
commit
bc7efeb344
14
.editorconfig
Normal file
14
.editorconfig
Normal file
@ -0,0 +1,14 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
|
||||
[*.go]
|
||||
indent_style = tab
|
||||
indent_size = 4
|
20
.gitattributes
vendored
Normal file
20
.gitattributes
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
# images
|
||||
|
||||
*.jpg binary
|
||||
*.jpeg binary
|
||||
*.bmp binary
|
||||
*.tiff binary
|
||||
*.png binary
|
||||
*.svg binary
|
||||
*.ico binary
|
||||
|
||||
# binary files
|
||||
*.exe binary
|
||||
*.dll binary
|
||||
|
||||
# PowerShell specific
|
||||
*.ps1 working-tree-encoding=UTF-8
|
||||
*.psm1 working-tree-encoding=UTF-8
|
||||
*.psd1 working-tree-encoding=UTF-8
|
||||
|
||||
*.md working-tree-encoding=UTF-8
|
10
.gitea/ISSUE_TEMPLATE.md
Normal file
10
.gitea/ISSUE_TEMPLATE.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
name: 'Default'
|
||||
about: 'Use this template if nothing seems to work.'
|
||||
title: ':question: '
|
||||
labels:
|
||||
- question
|
||||
---
|
||||
#### :grey_question: Simply ask your question here: :grey_question:
|
||||
|
||||
<!-- Take your time an think about your problem.... -->
|
48
.gitea/ISSUE_TEMPLATE/Bug.md
Normal file
48
.gitea/ISSUE_TEMPLATE/Bug.md
Normal file
@ -0,0 +1,48 @@
|
||||
---
|
||||
name: 'Bug'
|
||||
about: 'This template is used to report bugs!'
|
||||
title: ':lady_beetle: '
|
||||
labels:
|
||||
- bug
|
||||
---
|
||||
<!--
|
||||
This bug report is ony for content provided in this repository!
|
||||
|
||||
- Make sure you're able to reproduce the error in the latest version of this package.
|
||||
- Search of already existing issues.
|
||||
- Refer to the known issues and FAQ section.
|
||||
-->
|
||||
|
||||
#### :bomb: Steps to reproduce
|
||||
|
||||
```bash
|
||||
|
||||
```
|
||||
|
||||
#### :rocket: Expected behavior
|
||||
|
||||
```bash
|
||||
|
||||
```
|
||||
|
||||
#### :boom: Actual behavior
|
||||
|
||||
```bash
|
||||
|
||||
```
|
||||
|
||||
#### :notebook: Environment data
|
||||
|
||||
<!-- You can add additional environment data here--->
|
||||
|
||||
```bash
|
||||
|
||||
```
|
||||
|
||||
#### :framed_picture: Screenshots
|
||||
|
||||
<!-- Paste your screenshots here. -->
|
||||
|
||||
#### :bookmark: Refs
|
||||
|
||||
<!-- A place for additional references to other issues and PRs -->
|
16
.gitea/ISSUE_TEMPLATE/Enhancement.md
Normal file
16
.gitea/ISSUE_TEMPLATE/Enhancement.md
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
name: 'Enhancement'
|
||||
about: 'Wite about new features.'
|
||||
title: ':flying_saucer: '
|
||||
labels:
|
||||
- issue/enhancement
|
||||
---
|
||||
<!-- This issue template is used to describe whished features. -->
|
||||
|
||||
#### :satellite: Suggestion
|
||||
|
||||
#### :artificial_satellite: Implementation ideas
|
||||
|
||||
#### :framed_picture: Mock-up Images
|
||||
|
||||
#### :bookmark: Refs.
|
19
.gitea/PULL_REQUEST_TEMPLATE.md
Normal file
19
.gitea/PULL_REQUEST_TEMPLATE.md
Normal file
@ -0,0 +1,19 @@
|
||||
#### :book: Summary
|
||||
|
||||
<!-- Provide a summary of your changes. Describe the why and not how. -->
|
||||
|
||||
#### :bookmark_tabs: Test Plan
|
||||
|
||||
> :bulb: Select your test plan for the code changes.
|
||||
|
||||
- [x] CI pipeline tests
|
||||
- [ ] Custom test
|
||||
- [ ] No test plan
|
||||
|
||||
##### Details / Justification
|
||||
|
||||
<!-- Add your test details or justification for missing tests here. -->
|
||||
|
||||
#### :books: Additional Notes
|
||||
|
||||
<!-- A place for additional detail notes. -->
|
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
# Basic ignore patterns
|
||||
*.log
|
||||
*.secret
|
||||
|
||||
# data dir related prod files
|
||||
data/*.csv
|
||||
|
||||
# Ignore temp build artifacts
|
||||
/bin/*
|
||||
!bin/.gitkeep
|
||||
|
||||
# Ignore Pester test result files
|
||||
coverage.xml
|
||||
testResults.xml
|
19
.gitlocal
Normal file
19
.gitlocal
Normal file
@ -0,0 +1,19 @@
|
||||
[alias]
|
||||
|
||||
# simplified logs
|
||||
log1 = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
|
||||
log2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
|
||||
|
||||
# Aliases for a Phabricator inspired workflow
|
||||
# 1. Create new feature branch
|
||||
feature = "!f(){ b=$1; git checkout master; git pull; git checkout -b "$b" master; };f"
|
||||
|
||||
# 2. Working with code
|
||||
wip = !"git add -A; git commit -m '[WIP]'"
|
||||
squish = !"git add -A; git commit --no-edit --amend"
|
||||
|
||||
# 3. Push to origin
|
||||
pod = !"git push origin dev"
|
||||
|
||||
# 4. Push to custom remote branch
|
||||
poc = "!f(){ b=$1; git push origin "$b";};f"
|
1
.vscode/dictionaries/project-words.txt
vendored
Normal file
1
.vscode/dictionaries/project-words.txt
vendored
Normal file
@ -0,0 +1 @@
|
||||
tbd
|
10
.vscode/extensions.json
vendored
Normal file
10
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"editorconfig.editorconfig",
|
||||
"eamodio.gitlens",
|
||||
"streetsidesoftware.code-spell-checker",
|
||||
"streetsidesoftware.code-spell-checker-german",
|
||||
"bierner.emojisense",
|
||||
"ryanluker.vscode-coverage-gutters"
|
||||
]
|
||||
}
|
71
.vscode/settings.json
vendored
Normal file
71
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,71 @@
|
||||
{
|
||||
"files.encoding": "utf8",
|
||||
"files.eol": "auto",
|
||||
"files.trimTrailingWhitespace": true,
|
||||
"files.insertFinalNewline": true,
|
||||
"editor.renderWhitespace": "boundary",
|
||||
"editor.formatOnSave": true,
|
||||
"editor.formatOnType": true,
|
||||
"editor.rulers": [
|
||||
116
|
||||
],
|
||||
// powershell general
|
||||
"powershell.startAutomatically": true,
|
||||
"powershell.enableProfileLoading": true,
|
||||
"powershell.scriptAnalysis.enable": true,
|
||||
// powershell code Formatting
|
||||
"powershell.codeFormatting.openBraceOnSameLine": true,
|
||||
"powershell.codeFormatting.newLineAfterOpenBrace": true,
|
||||
"powershell.codeFormatting.newLineAfterCloseBrace": true,
|
||||
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
|
||||
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
|
||||
"powershell.codeFormatting.whitespaceAroundOperator": true,
|
||||
"powershell.codeFormatting.whitespaceAfterSeparator": true,
|
||||
"powershell.codeFormatting.ignoreOneLineBlock": true,
|
||||
"powershell.codeFormatting.alignPropertyValuePairs": true,
|
||||
// cSpell settings for custom dictionary
|
||||
"cSpell.enabled": true,
|
||||
"cSpell.caseSensitive": false,
|
||||
"cSpell.maxNumberOfProblems": 100,
|
||||
"cSpell.numSuggestions": 8,
|
||||
"cSpell.minWordLength": 3,
|
||||
"cSpell.allowCompoundWords": false,
|
||||
"cSpell.ignorePaths": [
|
||||
"package-lock.json",
|
||||
"node_modules",
|
||||
"vscode-extension",
|
||||
".git/objects",
|
||||
".vscode",
|
||||
".vscode-insiders"
|
||||
],
|
||||
"cSpell.enabledLanguageIds": [
|
||||
"c",
|
||||
"cpp",
|
||||
"csharp",
|
||||
"go",
|
||||
"javascript",
|
||||
"javascriptreact",
|
||||
"json",
|
||||
"latex",
|
||||
"markdown",
|
||||
"php",
|
||||
"plaintext",
|
||||
"powershell",
|
||||
"python",
|
||||
"text",
|
||||
"typescript",
|
||||
"typescriptreact",
|
||||
"yaml",
|
||||
"yml"
|
||||
],
|
||||
"cSpell.language": "en-US,de-DE",
|
||||
"cSpell.customDictionaries": {
|
||||
"project-words": {
|
||||
"name": "project-words",
|
||||
"path": "${workspaceRoot}/.vscode/dictionaries/project-words.txt",
|
||||
"description": "Words used in this project",
|
||||
"addWords": true
|
||||
},
|
||||
"custom": true
|
||||
}
|
||||
}
|
31
README.md
Normal file
31
README.md
Normal file
@ -0,0 +1,31 @@
|
||||
<p align="right">
|
||||
<img src="http://forthebadge.com/images/badges/built-with-love.svg">
|
||||
<img src="http://forthebadge.com/images/badges/for-you.svg">
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://gitea.ocram85.com/OCram85/tiniproxy/">
|
||||
<img
|
||||
src="/OCram85/tiniproxy/raw/branch/master/assets/social-logo.png"
|
||||
alt="tiniproxy"
|
||||
>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<h1 align="center">
|
||||
tiniproxy
|
||||
</h1>
|
||||
|
||||
<p align="center">
|
||||
tiniproxy docker image
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://drone.ocram85.com/OCram85/tiniproxy">
|
||||
<img src="https://drone.ocram85.com/api/badges/OCram85/tiniproxy/status.svg" alt="Master Branch Build Status">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
## :book: General
|
||||
|
||||
> :bulb: tbd...
|
BIN
assets/social-logo.png
Normal file
BIN
assets/social-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
Loading…
Reference in New Issue
Block a user