diff --git a/.realize.yaml b/.realize.yaml deleted file mode 100755 index 4438d64f9..000000000 --- a/.realize.yaml +++ /dev/null @@ -1,13 +0,0 @@ -settings: - flimit: 1000 - -schema: -# ###################################################################################################################### -- name: "COR" - path: "./cmd/monolith" - commands: { run: { status: true } } - args: [ "serve-api" ] - watcher: - paths: [ "." , "../../system" , "../../messaging" , "../../compose" , "../../pkg" , "../../internal" ] - extensions: [ "go" ] - ignored_paths: [ "../../vendor", "../../.git" ] diff --git a/Makefile b/Makefile index 219620143..1a1a42b97 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: pack build help realize qa critic vet codegen integration +.PHONY: pack build help qa critic vet codegen integration GO = go GOGET = $(GO) get -u @@ -64,7 +64,6 @@ DOCKER ?= docker ######################################################################################################################## # Tool bins -REALIZE = ${GOPATH}/bin/realize GOCRITIC = ${GOPATH}/bin/gocritic MOCKGEN = ${GOPATH}/bin/mockgen STATICCHECK = ${GOPATH}/bin/staticcheck @@ -120,12 +119,6 @@ $(RELEASE_PKEY): ######################################################################################################################## # Development -realize: $(REALIZE) - $(REALIZE) start - -codegen: $(PROTOGEN) - ./codegen.sh - mailhog.up: $(DOCKER) run --rm --publish $(DEV_MAILHOG_HTTP_ADDR):8025 --publish $(DEV_MAILHOG_SMTP_ADDR):1025 mailhog/mailhog @@ -210,9 +203,6 @@ mocks: $(MOCKGEN) ######################################################################################################################## # Toolset -$(REALIZE): - $(GOGET) github.com/tockins/realize - $(GOCRITIC): $(GOGET) github.com/go-critic/go-critic/... @@ -229,4 +219,6 @@ $(NODEMON): npm install -g nodemon clean: - rm -f $(REALIZE) $(GOCRITIC) + rm -f $(GOCRITIC) + +#