Skip to content

Commit 992fc31

Browse files
committed
chore: update gitignore
1 parent 3ab5428 commit 992fc31

File tree

3 files changed

+145
-5
lines changed

3 files changed

+145
-5
lines changed

.gitignore

+137-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Created by https://www.toptal.com/developers/gitignore/api/go
2-
# Edit at https://www.toptal.com/developers/gitignore?templates=go
1+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,goland,go
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,goland,go
33

44
### Go ###
55
# If you prefer the allow list template instead of the deny list, see community template:
@@ -24,10 +24,142 @@
2424
# Go workspace file
2525
go.work
2626

27-
# End of https://www.toptal.com/developers/gitignore/api/go
27+
### GoLand ###
28+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
29+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
2830

29-
.idea
30-
.vscode
31+
# User-specific stuff
32+
.idea/**/workspace.xml
33+
.idea/**/tasks.xml
34+
.idea/**/usage.statistics.xml
35+
.idea/**/dictionaries
36+
.idea/**/shelf
37+
38+
# AWS User-specific
39+
.idea/**/aws.xml
40+
41+
# Generated files
42+
.idea/**/contentModel.xml
43+
44+
# Sensitive or high-churn files
45+
.idea/**/dataSources/
46+
.idea/**/dataSources.ids
47+
.idea/**/dataSources.local.xml
48+
.idea/**/sqlDataSources.xml
49+
.idea/**/dynamic.xml
50+
.idea/**/uiDesigner.xml
51+
.idea/**/dbnavigator.xml
52+
53+
# Gradle
54+
.idea/**/gradle.xml
55+
.idea/**/libraries
56+
57+
# Gradle and Maven with auto-import
58+
# When using Gradle or Maven with auto-import, you should exclude module files,
59+
# since they will be recreated, and may cause churn. Uncomment if using
60+
# auto-import.
61+
# .idea/artifacts
62+
# .idea/compiler.xml
63+
# .idea/jarRepositories.xml
64+
# .idea/modules.xml
65+
# .idea/*.iml
66+
# .idea/modules
67+
# *.iml
68+
# *.ipr
69+
70+
# CMake
71+
cmake-build-*/
72+
73+
# Mongo Explorer plugin
74+
.idea/**/mongoSettings.xml
75+
76+
# File-based project format
77+
*.iws
78+
79+
# IntelliJ
80+
out/
81+
82+
# mpeltonen/sbt-idea plugin
83+
.idea_modules/
84+
85+
# JIRA plugin
86+
atlassian-ide-plugin.xml
87+
88+
# Cursive Clojure plugin
89+
.idea/replstate.xml
90+
91+
# SonarLint plugin
92+
.idea/sonarlint/
93+
94+
# Crashlytics plugin (for Android Studio and IntelliJ)
95+
com_crashlytics_export_strings.xml
96+
crashlytics.properties
97+
crashlytics-build.properties
98+
fabric.properties
99+
100+
# Editor-based Rest Client
101+
.idea/httpRequests
102+
103+
# Android studio 3.1+ serialized cache file
104+
.idea/caches/build_file_checksums.ser
105+
106+
### GoLand Patch ###
107+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
108+
109+
# *.iml
110+
# modules.xml
111+
# .idea/misc.xml
112+
# *.ipr
113+
114+
# Sonarlint plugin
115+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
116+
.idea/**/sonarlint/
117+
118+
# SonarQube Plugin
119+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
120+
.idea/**/sonarIssues.xml
121+
122+
# Markdown Navigator plugin
123+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
124+
.idea/**/markdown-navigator.xml
125+
.idea/**/markdown-navigator-enh.xml
126+
.idea/**/markdown-navigator/
127+
128+
# Cache file creation bug
129+
# See https://youtrack.jetbrains.com/issue/JBR-2257
130+
.idea/$CACHE_FILE$
131+
132+
# CodeStream plugin
133+
# https://plugins.jetbrains.com/plugin/12206-codestream
134+
.idea/codestream.xml
135+
136+
# Azure Toolkit for IntelliJ plugin
137+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
138+
.idea/**/azureSettings.xml
139+
140+
### VisualStudioCode ###
141+
.vscode/*
142+
!.vscode/settings.json
143+
!.vscode/tasks.json
144+
!.vscode/launch.json
145+
!.vscode/extensions.json
146+
!.vscode/*.code-snippets
147+
148+
# Local History for Visual Studio Code
149+
.history/
150+
151+
# Built Visual Studio Code Extensions
152+
*.vsix
153+
154+
### VisualStudioCode Patch ###
155+
# Ignore all local history of files
156+
.history
157+
.ionide
158+
159+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,goland,go
160+
161+
/swagger
31162
/build
32163
/var
164+
/api
33165
/config.json

go.sum

+5
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeN
126126
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
127127
github.com/google/pprof v0.0.0-20240409012703-83162a5b38cd h1:gbpYu9NMq8jhDVbvlGkMFWCjLFlqqEZjEmObmhUy6Vo=
128128
github.com/google/pprof v0.0.0-20240409012703-83162a5b38cd/go.mod h1:kf6iHlnVGwgKolg33glAes7Yg/8iWP8ukqeldJSO7jw=
129+
github.com/google/subcommands v1.2.0 h1:vWQspBTo2nEqTUFita5/KeEWlUL8kQObDFbub/EN9oE=
129130
github.com/google/subcommands v1.2.0/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk=
130131
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
131132
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
@@ -170,6 +171,8 @@ github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0
170171
github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
171172
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
172173
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
174+
github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0=
175+
github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
173176
github.com/mattn/go-sqlite3 v1.14.16 h1:yOQRA0RpS5PFz/oikGwBEqvAWhWg5ufRz4ETLjwpU1Y=
174177
github.com/mattn/go-sqlite3 v1.14.16/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg=
175178
github.com/meilisearch/meilisearch-go v0.28.0 h1:f3XJ66ZM+R8bANAOLqsjvoq/HhQNpVJPYoNt6QgNzME=
@@ -187,6 +190,8 @@ github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9G
187190
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
188191
github.com/ncruces/go-strftime v0.1.9 h1:bY0MQC28UADQmHmaF5dgpLmImcShSi2kHU9XLdhx/f4=
189192
github.com/ncruces/go-strftime v0.1.9/go.mod h1:Fwc5htZGVVkseilnfgOVb9mKy6w1naJmn9CehxcKcls=
193+
github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec=
194+
github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
190195
github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc=
191196
github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ=
192197
github.com/pelletier/go-toml/v2 v2.2.3 h1:YmeHyLY8mFWbdkNWwpr+qIL2bEqT0o95WSdkNHvL12M=

internal/pkg/database/ent/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
!/schema
2+
!generate.go
3+
*

0 commit comments

Comments
 (0)