Makefile
parent
0dce310a6c
commit
c0daa37c97
6
makefile
6
makefile
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
install:
|
install:
|
||||||
composer install;
|
composer install;
|
||||||
npm install;
|
cd client && npm install && cd -;
|
||||||
|
|
||||||
api-start:
|
api-start:
|
||||||
bin/console server:start *:8000;
|
bin/console server:start *:8000;
|
||||||
|
@ -11,7 +11,7 @@ api-stop:
|
||||||
bin/console server:stop;
|
bin/console server:stop;
|
||||||
|
|
||||||
front-build:
|
front-build:
|
||||||
cd client && npm run build;
|
cd client && npm run build && cd -;
|
||||||
|
|
||||||
front-run:
|
front-run:
|
||||||
npm start;
|
cd client && npm start;
|
Loading…
Reference in New Issue