From 43b0a9daddcc4e10cc1a0b054ec538b75bbb2717 Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 20 Jan 2020 13:43:51 -0500 Subject: [PATCH] Changing default Makefile target to start the UI, now that it is functional --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 55bb0dc2f..b751621ad 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,14 @@ GO_VERSION=1.13 NODE_VERSION=12.14.1 -.PHONY: server -server: check_go_env data - @reflex -d none -c reflex.conf - .PHONY: dev dev: check_env data @goreman -f Procfile.dev -b 4533 start +.PHONY: server +server: check_go_env data + @reflex -d none -c reflex.conf + .PHONY: watch watch: check_go_env ginkgo watch -notify ./...