mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
20 lines
360 B
Makefile
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
|