Skip to content

Commit d3dc49d

Browse files
committed
Initial Commit
Signed-off-by: Stefan Kühnel <[email protected]>
0 parents  commit d3dc49d

File tree

7 files changed

+789
-0
lines changed

7 files changed

+789
-0
lines changed

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 2
7+
indent_style = space
8+
insert_final_newline = true
9+
10+
[LICENSE]
11+
indent_size = unset
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "GitHub: Release on Push"
2+
3+
on: ["push"]
4+
5+
permissions:
6+
contents: "write"
7+
8+
jobs:
9+
release:
10+
runs-on: "ubuntu-latest"
11+
12+
steps:
13+
- name: "GitHub: Checkout Repository"
14+
uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" #v4.2.2
15+
16+
- name: "GitHub: Delete Previous Release"
17+
continue-on-error: true
18+
run: "gh release delete latest --cleanup-tag --yes"
19+
env:
20+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
21+
22+
- name: "GitHub: Create Release"
23+
run: "gh release create latest --latest"
24+
env:
25+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

.gitignore

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/dotenv,jetbrains+all,visualstudiocode
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=dotenv,jetbrains+all,visualstudiocode
3+
4+
### dotenv ###
5+
.env
6+
7+
### JetBrains+all ###
8+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
9+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
10+
11+
# User-specific stuff
12+
.idea/**/workspace.xml
13+
.idea/**/tasks.xml
14+
.idea/**/usage.statistics.xml
15+
.idea/**/dictionaries
16+
.idea/**/shelf
17+
18+
# AWS User-specific
19+
.idea/**/aws.xml
20+
21+
# Generated files
22+
.idea/**/contentModel.xml
23+
24+
# Sensitive or high-churn files
25+
.idea/**/dataSources/
26+
.idea/**/dataSources.ids
27+
.idea/**/dataSources.local.xml
28+
.idea/**/sqlDataSources.xml
29+
.idea/**/dynamic.xml
30+
.idea/**/uiDesigner.xml
31+
.idea/**/dbnavigator.xml
32+
33+
# Gradle
34+
.idea/**/gradle.xml
35+
.idea/**/libraries
36+
37+
# Gradle and Maven with auto-import
38+
# When using Gradle or Maven with auto-import, you should exclude module files,
39+
# since they will be recreated, and may cause churn. Uncomment if using
40+
# auto-import.
41+
# .idea/artifacts
42+
# .idea/compiler.xml
43+
# .idea/jarRepositories.xml
44+
# .idea/modules.xml
45+
# .idea/*.iml
46+
# .idea/modules
47+
# *.iml
48+
# *.ipr
49+
50+
# CMake
51+
cmake-build-*/
52+
53+
# Mongo Explorer plugin
54+
.idea/**/mongoSettings.xml
55+
56+
# File-based project format
57+
*.iws
58+
59+
# IntelliJ
60+
out/
61+
62+
# mpeltonen/sbt-idea plugin
63+
.idea_modules/
64+
65+
# JIRA plugin
66+
atlassian-ide-plugin.xml
67+
68+
# Cursive Clojure plugin
69+
.idea/replstate.xml
70+
71+
# SonarLint plugin
72+
.idea/sonarlint/
73+
74+
# Crashlytics plugin (for Android Studio and IntelliJ)
75+
com_crashlytics_export_strings.xml
76+
crashlytics.properties
77+
crashlytics-build.properties
78+
fabric.properties
79+
80+
# Editor-based Rest Client
81+
.idea/httpRequests
82+
83+
# Android studio 3.1+ serialized cache file
84+
.idea/caches/build_file_checksums.ser
85+
86+
### JetBrains+all Patch ###
87+
# Ignore everything but code style settings and run configurations
88+
# that are supposed to be shared within teams.
89+
90+
.idea/*
91+
92+
!.idea/codeStyles
93+
!.idea/runConfigurations
94+
95+
### VisualStudioCode ###
96+
.vscode/*
97+
!.vscode/settings.json
98+
!.vscode/tasks.json
99+
!.vscode/launch.json
100+
!.vscode/extensions.json
101+
!.vscode/*.code-snippets
102+
103+
# Local History for Visual Studio Code
104+
.history/
105+
106+
# Built Visual Studio Code Extensions
107+
*.vsix
108+
109+
### VisualStudioCode Patch ###
110+
# Ignore all local history of files
111+
.history
112+
.ionide
113+
114+
# End of https://www.toptal.com/developers/gitignore/api/dotenv,jetbrains+all,visualstudiocode

0 commit comments

Comments
 (0)