From 97c58068b0cf82fcbcb7826994f3d0319c3914d6 Mon Sep 17 00:00:00 2001 From: Imbus Date: Thu, 19 Oct 2023 02:31:54 +0200 Subject: [PATCH] Removed some unnecessary abstraction from justfile --- justfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 9ffdd99..37288e6 100644 --- a/justfile +++ b/justfile @@ -1,7 +1,7 @@ # Builds a debug container and runs it # Starts the client in dev mode -dev: start-debug npm-install - cd client && npm run dev +dev: start-debug + @echo "Cd into client and run 'npm run dev' to start the client in dev mode." # Builds the client with npm (result in client/distt npm-install: @@ -19,6 +19,7 @@ build-container-server-debug: start-debug: build-container-server-debug podman container rm -f frostbyte-debug podman run -d -p 8080:8080 --name frostbyte-debug fb-server-debug + @echo "Debug server started." # Builds a release container build-container-release: