Files
Phraseanet/Makefile
Nicolas Maillat de45967d5e Change Makefile
2015-12-02 20:14:47 +01:00

18 lines
279 B
Makefile

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