3
0

Remove realize tool

This commit is contained in:
Denis Arh 2020-08-15 18:26:08 +02:00
parent 2c1368262b
commit 1147830663
2 changed files with 4 additions and 25 deletions

View File

@ -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" ]

View File

@ -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)
#