diff --git a/serv_rest_api/api/Makefile b/serv_rest_api/api/Makefile new file mode 100644 index 0000000..91aef25 --- /dev/null +++ b/serv_rest_api/api/Makefile @@ -0,0 +1,2 @@ +t: + @go test ./... -v diff --git a/serv_spa/spa/vue/Makefile b/serv_spa/spa/vue/Makefile new file mode 100644 index 0000000..762e428 --- /dev/null +++ b/serv_spa/spa/vue/Makefile @@ -0,0 +1,13 @@ +build: + npm run build + +run: + npm run dev + +deploy: + npm run build + git add . + git commit -m 'build deploy' + git push + +.DEFAULT_GOAL := run \ No newline at end of file