Skip to content

Commit 37bd3c4

Browse files
committed
Initial commit
0 parents  commit 37bd3c4

File tree

2 files changed

+128
-0
lines changed

2 files changed

+128
-0
lines changed

.gitignore

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
3+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,linux,windows
4+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,macos,linux,windows
5+
6+
### Linux ###
7+
*~
8+
9+
# temporary files which can be created if a process still has a handle open of a deleted file
10+
.fuse_hidden*
11+
12+
# KDE directory preferences
13+
.directory
14+
15+
# Linux trash folder which might appear on any partition or disk
16+
.Trash-*
17+
18+
# .nfs files are created when an open file is removed but is still being accessed
19+
.nfs*
20+
21+
### macOS ###
22+
# General
23+
.DS_Store
24+
.AppleDouble
25+
.LSOverride
26+
27+
# Icon must end with two \r
28+
Icon
29+
30+
# Thumbnails
31+
._*
32+
33+
# Files that might appear in the root of a volume
34+
.DocumentRevisions-V100
35+
.fseventsd
36+
.Spotlight-V100
37+
.TemporaryItems
38+
.Trashes
39+
.VolumeIcon.icns
40+
.com.apple.timemachine.donotpresent
41+
42+
# Directories potentially created on remote AFP share
43+
.AppleDB
44+
.AppleDesktop
45+
Network Trash Folder
46+
Temporary Items
47+
.apdisk
48+
49+
### macOS Patch ###
50+
# iCloud generated files
51+
*.icloud
52+
53+
### VisualStudioCode ###
54+
.vscode/*
55+
!.vscode/settings.json
56+
!.vscode/tasks.json
57+
!.vscode/launch.json
58+
!.vscode/extensions.json
59+
!.vscode/*.code-snippets
60+
61+
# Local History for Visual Studio Code
62+
.history/
63+
64+
# Built Visual Studio Code Extensions
65+
*.vsix
66+
67+
### VisualStudioCode Patch ###
68+
# Ignore all local history of files
69+
.history
70+
.ionide
71+
72+
# Support for Project snippet scope
73+
.vscode/*.code-snippets
74+
75+
# Ignore code-workspaces
76+
*.code-workspace
77+
78+
### Windows ###
79+
# Windows thumbnail cache files
80+
Thumbs.db
81+
Thumbs.db:encryptable
82+
ehthumbs.db
83+
ehthumbs_vista.db
84+
85+
# Dump file
86+
*.stackdump
87+
88+
# Folder config file
89+
[Dd]esktop.ini
90+
91+
# Recycle Bin used on file shares
92+
$RECYCLE.BIN/
93+
94+
# Windows Installer files
95+
*.cab
96+
*.msi
97+
*.msix
98+
*.msm
99+
*.msp
100+
101+
# Windows shortcuts
102+
*.lnk
103+
104+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,macos,linux,windows
105+
106+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
107+

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 b-data GmbH
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)