Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
3 changes: 0 additions & 3 deletions SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Loading