Files
Phraseanet/Makefile
Benoît Burnichon 3b7938c412 Add target install to Makefile
Update Makefile to perform grunt install
2015-07-06 19:09:58 +02:00

20 lines
360 B
Makefile

# vim:noexpandtab:ts=4:sts=4:ft=make:
install:
php bin/console system:clear-cache
npm install
composer install -o
./node_modules/.bin/grunt install-assets
php bin/developer assets:compile-less
config:
@php bin/console compile:configuration
watch:
@echo 'config/configuration.yml' | entr make config
test:
@exit 0
.PHONY: install config watch test