diff --git a/Makefile b/Makefile index bed1099f8..9447c7634 100644 --- a/Makefile +++ b/Makefile @@ -30,10 +30,10 @@ update: $(COMPOSER) update && $(COMPOSER) outdated server: ## to start server - bin/console server:start 127.0.0.1:8088 -q || true + symfony server:start --no-tls --port=8088 -d || true server-stop: ## to stop server - bin/console server:stop + symfony server:stop cache: ## to clean cache bin/console cache:clear @@ -46,17 +46,15 @@ csclear: ## to clean cache and check coding style cscheck: ## to check coding style make csclear vendor/bin/ecs check src - vendor/bin/ecs check tests/php make stancheck csfix: ## to fix coding style make csclear vendor/bin/ecs check src --fix - vendor/bin/ecs check tests/php --fix make stancheck stancheck: ## to run phpstan - vendor/bin/phpstan --memory-limit=1G analyse -c phpstan.neon src + vendor/bin/phpstan --memory-limit=1G analyse src test: ## to run phpunit tests vendor/bin/phpunit diff --git a/SETUP.md b/SETUP.md index a10ddde95..c26734042 100644 --- a/SETUP.md +++ b/SETUP.md @@ -96,9 +96,6 @@ See the other options by running `npm run`. - Using the Symfony CLI tool, just run `symfony server:start`. - - Alternatively, run `bin/console server:start` - (if running `bin/console server:start`does not work because you don't have the pcntl extension, run `bin/console server:run`) - In your browser, go to `http://127.0.0.1:8000/` for the frontend, and to `http://127.0.0.1:8000/bolt` for the Admin Panel.