From 891a6e7c6478550ae69e07eb843088b059dce1a0 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Sun, 17 Nov 2024 00:37:39 +0100 Subject: [PATCH 1/2] build(Makefile): compile-backend before start-backend for bin --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ff73bd03e..f5089025d 100644 --- a/Makefile +++ b/Makefile @@ -254,7 +254,7 @@ endif fi # HELP(start-backend): start development instance ---start-backend: +--start-backend: --compile-backend export DEV_PORT_HTTP=`cat $(CONTAINER_FILE) | grep 'DEV_PORT_HTTP=' | sed 's/DEV_PORT_HTTP=//'`; \ export DEV_PORT_HTTPS=`cat $(CONTAINER_FILE) | grep 'DEV_PORT_HTTPS=' | sed 's/DEV_PORT_HTTPS=//'`; \ export HOST=`hostname -s` ; \ From b844e3028c49596b456d144c85d2b68629208464 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Sun, 17 Nov 2024 01:02:18 +0100 Subject: [PATCH 2/2] build(Makefile): ensure frontend compilation is done before starting backend --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f5089025d..b6b5b04b4 100644 --- a/Makefile +++ b/Makefile @@ -96,7 +96,7 @@ start: $(MAKE) start-postgres $(MAKE) start-memcached $(MAKE) start-minio - $(MAKE) start-frontend + $(MAKE) compile-frontend $(MAKE) start-backend .PHONY: %-backend