File tree 1 file changed +19
-0
lines changed
1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,25 @@ all: build
92
92
93
93
include docker/Makefile
94
94
95
+ .PHONY : help
96
+ help :
97
+ @echo " Make Routines:"
98
+ @echo " - \"\" equivalent to \" build\" "
99
+ @echo " - build creates the entire project"
100
+ @echo " - clean delete integration files and build files but not css and js files"
101
+ @echo " - clean-all delete all generated files (integration test, build, css and js files)"
102
+ @echo " - css rebuild only css files"
103
+ @echo " - js rebuild only js files"
104
+ @echo " - generate run \" make css js\" and \" go generate\" "
105
+ @echo " - fmt format the code"
106
+ @echo " - generate-swagger generate the swagger spec from code comments"
107
+ @echo " - swagger-validate check if the swagger spec is valide"
108
+ @echo " - revive run code linter revive"
109
+ @echo " - misspell check if a word is written wrong"
110
+ @echo " - vet examines Go source code and reports suspicious constructs"
111
+ @echo " - test run unit test"
112
+ @echo " - test-sqlite run integration test for sqlite"
113
+
95
114
.PHONY : go-check
96
115
go-check :
97
116
$(eval GO_VERSION := $(shell printf "% 03d% 03d% 03d" $(shell go version | grep -Eo '[0-9]+\.?[0-9]+?\.?[0-9]?\s' | tr '.' ' ') ;) )
You can’t perform that action at this time.
0 commit comments