mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 01:43:13 +00:00
18 lines
276 B
Makefile
18 lines
276 B
Makefile
install:
|
|
composer install
|
|
rm -rf ./node_modules
|
|
rm -rf ./www/assets
|
|
rm -rf ./www/bower_components
|
|
npm install
|
|
|
|
config:
|
|
@php bin/console compile:configuration
|
|
|
|
watch:
|
|
@echo 'config/configuration.yml' | entr make config
|
|
|
|
test:
|
|
@exit 0
|
|
|
|
.PHONY: install config watch test
|