.PHONY: configure
configure:
	cp docker/example.docker-compose.override.yml ./docker-compose.override.yml
	cp docker/example.env ./.env
	docker-compose start php
	docker/install-composer.sh
	docker/composer.sh install
	cp resources/example.settings.php config/settings.php
	test -f resources/example.htaccess && cp resources/example.htaccess public/.htaccess

.PHONY: help
help:
	@echo ""
	@echo "Available & useful targets:"
	@echo ""
	@echo "  configure       > run this just after cloning"
	@echo ""
