From 5990a4285f433cd79399a6689d7c1f377dba235f Mon Sep 17 00:00:00 2001 From: Deluan Date: Tue, 28 Apr 2020 23:24:57 -0400 Subject: [PATCH] Replace `goreman` with `node-foreman` --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6832e4e9..f6309164 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ default: .PHONY: default dev: check_env - @goreman -f Procfile.dev -b 4533 start + npx foreman -j Procfile.dev -p 4533 start .PHONY: dev server: check_go_env @@ -37,7 +37,6 @@ testall: check_go_env test setup: @which go-bindata || (echo "Installing BinData" && GO111MODULE=off go get -u github.com/go-bindata/go-bindata/...) @which reflex || (echo "Installing Reflex" && GO111MODULE=off go get -u github.com/cespare/reflex) - @which goreman || (echo "Installing Goreman" && GO111MODULE=off go get -u github.com/mattn/goreman) go mod download .PHONY: setup