Files
Phraseanet/Makefile
2016-09-28 18:40:26 +02:00

33 lines
559 B
Makefile

install:
make install_composer
make clean_assets
make install_asset_dependencies
make install_assets
install_composer:
composer install
install_asset_dependencies:
npm install
./node_modules/.bin/gulp build
install_assets:
./node_modules/.bin/gulp install-assets
clean_assets:
rm -rf ./node_modules
rm -rf ./www/assets
rm -rf ./www/bower_components
touch ./node_modules/.gitkeep
config:
@php bin/console compile:configuration
watch:
@echo 'config/configuration.yml' | entr make config
test:
@exit 0
.PHONY: install config watch test