From c0daa37c976fea6e10c85709827ca83a66690a09 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 5 Jun 2018 17:55:46 +0200 Subject: [PATCH] Makefile --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index e8964af..ebbdbe1 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ install: composer install; - npm install; + cd client && npm install && cd -; api-start: bin/console server:start *:8000; @@ -11,7 +11,7 @@ api-stop: bin/console server:stop; front-build: - cd client && npm run build; + cd client && npm run build && cd -; front-run: - npm start; \ No newline at end of file + cd client && npm start; \ No newline at end of file