mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
19 lines
302 B
Makefile
19 lines
302 B
Makefile
# vim:noexpandtab:ts=4:sts=4:ft=make:
|
|
|
|
install:
|
|
composer install -o
|
|
rm -rf ./node_modules
|
|
npm install
|
|
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
|