2018-06-04 16:29:09 +00:00
|
|
|
.PHONY: install api-start api-stop front-build front-run
|
2018-05-07 09:13:18 +00:00
|
|
|
|
|
|
|
install:
|
|
|
|
composer install;
|
2018-06-05 15:55:46 +00:00
|
|
|
cd client && npm install && cd -;
|
2018-05-07 09:13:18 +00:00
|
|
|
|
|
|
|
api-start:
|
2018-06-04 08:11:01 +00:00
|
|
|
bin/console server:start *:8000;
|
2018-05-07 09:13:18 +00:00
|
|
|
|
|
|
|
api-stop:
|
|
|
|
bin/console server:stop;
|
|
|
|
|
|
|
|
front-build:
|
2018-06-05 15:55:46 +00:00
|
|
|
cd client && npm run build && cd -;
|
2018-05-11 08:21:47 +00:00
|
|
|
|
2018-05-18 09:16:36 +00:00
|
|
|
front-run:
|
2018-06-05 15:55:46 +00:00
|
|
|
cd client && npm start;
|