We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d61be68 commit 6073f7eCopy full SHA for 6073f7e
.gitignore
@@ -1 +1,22 @@
1
-*.ps1
+### Go ###
2
+# Binaries for programs and plugins
3
+*.exe
4
+*.exe~
5
+*.dll
6
+*.so
7
+*.dylib
8
+
9
+# Test binary, built with `go test -c`
10
+*.test
11
12
+# Output of the go coverage tool, specifically when used with LiteIDE
13
+*.out
14
15
+# Dependency directories (remove the comment below to include it)
16
+# vendor/
17
18
+### Go Patch ###
19
+/vendor/
20
+/Godeps/
21
22
+# End of https://www.toptal.com/developers/gitignore/api/go
Makefile
@@ -0,0 +1,13 @@
+test:
+ go test -v
+build:
+ go build ...
+run:
+ go run server.go router.go
+fmt:
+ goimports -w .
+lint:
+ go vet
+setup:
+ go get -u github.org/x/tools/cmd/goimports
+ go get -u github.org/x/lint/golint
0 commit comments