We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit b8b80bdCopy full SHA for b8b80bd
.gitignore
@@ -0,0 +1,37 @@
1
+# Binaries for programs and plugins
2
+*.exe
3
+*.dll
4
+*.so
5
+*.dylib
6
+
7
+# Test binary, build with `go test -c`
8
+*.test
9
10
+# Output of the go coverage tool, specifically when used with LiteIDE
11
+*.out
12
+.env
13
+# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
14
+.glide/
15
16
+# vim
17
+*.swp
18
19
+# IDE
20
+.project
21
+.settings
22
+.idea/
23
+.vscode
24
+__debug_bin*
25
+venv/
26
+out/
27
28
+# local development deckhouse binary
29
+/deckhouse/deckhouse
30
31
+# macOS Finder files
32
+*.DS_Store
33
+._*
34
35
+# Dev environment
36
+bin/
37
+include/
go.mod
@@ -0,0 +1,3 @@
+module github.com/deckhouse/hugo-web-product-module
+go 1.24.2
0 commit comments