You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
COMPOSER:=$(shell if which composer > /dev/null 2>&1; then which composer; fi)
COMPOSEROPTS=
help:
@echo 'Makefile for a Symfony application '
@echo ' '
@echo 'Usage: '
@echo ' make clear clear the cache '
@echo ' make deps install project dependencies '
@echo ' make setup setup project for development '
@echo ' make test execute test suite '
@echo ' set COVERAGE=true to run coverage'
@echo ' '
clear:
$(CONSOLECMD) cache:clear
deps:
ifdef COMPOSER
$(COMPOSER) install $(COMPOSEROPTS)
endif
setup:
$(CONSOLECMD) oro:install --organization-name Oro --user-name admin --user-email admin@example.com --user-firstname John --user-lastname Doe --user-password admin --sample-data n --application-url http://local.platform.webplates.xyz --force