Am-I-late/makefile

20 lines
352 B
Makefile
Raw Normal View History

2018-05-07 09:13:18 +00:00
.PHONY: install api-start api-stop front-watch front-build front-build-prod
install:
composer install;
npm install;
api-start:
bin/console server:start;
api-stop:
bin/console server:stop;
front-watch:
./node_modules/.bin/encore dev --watch
front-build:
./node_modules/.bin/encore dev
front-build-prod:
./node_modules/.bin/encore production