Skip to content

Commit b8b80bd

Browse files
committed
First commit
0 parents  commit b8b80bd

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/deckhouse/hugo-web-product-module
2+
3+
go 1.24.2

0 commit comments

Comments
 (0)