Skip to content

Commit 0c2fe45

Browse files
committed
Initial commit
0 parents  commit 0c2fe45

File tree

3 files changed

+439
-0
lines changed

3 files changed

+439
-0
lines changed

.gitignore

Lines changed: 236 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,236 @@
1+
# File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
2+
# Created by https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,macos,linux,jetbrains,go
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,visualstudiocode,macos,linux,jetbrains,go
4+
5+
### Go ###
6+
# If you prefer the allow list template instead of the deny list, see community template:
7+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
8+
#
9+
# Binaries for programs and plugins
10+
*.exe
11+
*.exe~
12+
*.dll
13+
*.so
14+
*.dylib
15+
16+
# Test binary, built with `go test -c`
17+
*.test
18+
19+
# Output of the go coverage tool, specifically when used with LiteIDE
20+
*.out
21+
22+
# Dependency directories (remove the comment below to include it)
23+
# vendor/
24+
25+
# Go workspace file
26+
go.work
27+
28+
### JetBrains ###
29+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
30+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
31+
32+
# User-specific stuff
33+
.idea/**/workspace.xml
34+
.idea/**/tasks.xml
35+
.idea/**/usage.statistics.xml
36+
.idea/**/dictionaries
37+
.idea/**/shelf
38+
39+
# AWS User-specific
40+
.idea/**/aws.xml
41+
42+
# Generated files
43+
.idea/**/contentModel.xml
44+
45+
# Sensitive or high-churn files
46+
.idea/**/dataSources/
47+
.idea/**/dataSources.ids
48+
.idea/**/dataSources.local.xml
49+
.idea/**/sqlDataSources.xml
50+
.idea/**/dynamic.xml
51+
.idea/**/uiDesigner.xml
52+
.idea/**/dbnavigator.xml
53+
54+
# Gradle
55+
.idea/**/gradle.xml
56+
.idea/**/libraries
57+
58+
# Gradle and Maven with auto-import
59+
# When using Gradle or Maven with auto-import, you should exclude module files,
60+
# since they will be recreated, and may cause churn. Uncomment if using
61+
# auto-import.
62+
# .idea/artifacts
63+
# .idea/compiler.xml
64+
# .idea/jarRepositories.xml
65+
# .idea/modules.xml
66+
# .idea/*.iml
67+
# .idea/modules
68+
# *.iml
69+
# *.ipr
70+
71+
# CMake
72+
cmake-build-*/
73+
74+
# Mongo Explorer plugin
75+
.idea/**/mongoSettings.xml
76+
77+
# File-based project format
78+
*.iws
79+
80+
# IntelliJ
81+
out/
82+
83+
# mpeltonen/sbt-idea plugin
84+
.idea_modules/
85+
86+
# JIRA plugin
87+
atlassian-ide-plugin.xml
88+
89+
# Cursive Clojure plugin
90+
.idea/replstate.xml
91+
92+
# SonarLint plugin
93+
.idea/sonarlint/
94+
95+
# Crashlytics plugin (for Android Studio and IntelliJ)
96+
com_crashlytics_export_strings.xml
97+
crashlytics.properties
98+
crashlytics-build.properties
99+
fabric.properties
100+
101+
# Editor-based Rest Client
102+
.idea/httpRequests
103+
104+
# Android studio 3.1+ serialized cache file
105+
.idea/caches/build_file_checksums.ser
106+
107+
### JetBrains Patch ###
108+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
109+
110+
# *.iml
111+
# modules.xml
112+
# .idea/misc.xml
113+
# *.ipr
114+
115+
# Sonarlint plugin
116+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
117+
.idea/**/sonarlint/
118+
119+
# SonarQube Plugin
120+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
121+
.idea/**/sonarIssues.xml
122+
123+
# Markdown Navigator plugin
124+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
125+
.idea/**/markdown-navigator.xml
126+
.idea/**/markdown-navigator-enh.xml
127+
.idea/**/markdown-navigator/
128+
129+
# Cache file creation bug
130+
# See https://youtrack.jetbrains.com/issue/JBR-2257
131+
.idea/$CACHE_FILE$
132+
133+
# CodeStream plugin
134+
# https://plugins.jetbrains.com/plugin/12206-codestream
135+
.idea/codestream.xml
136+
137+
# Azure Toolkit for IntelliJ plugin
138+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
139+
.idea/**/azureSettings.xml
140+
141+
### Linux ###
142+
*~
143+
144+
# temporary files which can be created if a process still has a handle open of a deleted file
145+
.fuse_hidden*
146+
147+
# KDE directory preferences
148+
.directory
149+
150+
# Linux trash folder which might appear on any partition or disk
151+
.Trash-*
152+
153+
# .nfs files are created when an open file is removed but is still being accessed
154+
.nfs*
155+
156+
### macOS ###
157+
# General
158+
.DS_Store
159+
.AppleDouble
160+
.LSOverride
161+
162+
# Icon must end with two \r
163+
Icon
164+
165+
# Thumbnails
166+
._*
167+
168+
# Files that might appear in the root of a volume
169+
.DocumentRevisions-V100
170+
.fseventsd
171+
.Spotlight-V100
172+
.TemporaryItems
173+
.Trashes
174+
.VolumeIcon.icns
175+
.com.apple.timemachine.donotpresent
176+
177+
# Directories potentially created on remote AFP share
178+
.AppleDB
179+
.AppleDesktop
180+
Network Trash Folder
181+
Temporary Items
182+
.apdisk
183+
184+
### macOS Patch ###
185+
# iCloud generated files
186+
*.icloud
187+
188+
### VisualStudioCode ###
189+
.vscode/*
190+
!.vscode/settings.json
191+
!.vscode/tasks.json
192+
!.vscode/launch.json
193+
!.vscode/extensions.json
194+
!.vscode/*.code-snippets
195+
196+
# Local History for Visual Studio Code
197+
.history/
198+
199+
# Built Visual Studio Code Extensions
200+
*.vsix
201+
202+
### VisualStudioCode Patch ###
203+
# Ignore all local history of files
204+
.history
205+
.ionide
206+
207+
### Windows ###
208+
# Windows thumbnail cache files
209+
Thumbs.db
210+
Thumbs.db:encryptable
211+
ehthumbs.db
212+
ehthumbs_vista.db
213+
214+
# Dump file
215+
*.stackdump
216+
217+
# Folder config file
218+
[Dd]esktop.ini
219+
220+
# Recycle Bin used on file shares
221+
$RECYCLE.BIN/
222+
223+
# Windows Installer files
224+
*.cab
225+
*.msi
226+
*.msix
227+
*.msm
228+
*.msp
229+
230+
# Windows shortcuts
231+
*.lnk
232+
233+
# End of https://www.toptal.com/developers/gitignore/api/windows,visualstudiocode,macos,linux,jetbrains,go
234+
235+
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
236+

0 commit comments

Comments
 (0)