Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

👌 IMPROVE: Syntax improvements #3

Merged
merged 1 commit into from
Oct 5, 2022
Merged
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
31 changes: 4 additions & 27 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -216,39 +216,16 @@ tests-coverage: ## Run tests with coverage.
#---------------------------------------------#

## === ⭐ OTHER =================================================
before-commit: ## Run before commit.
$(MAKE) qa-cs-fixer
$(MAKE) qa-phpstan
$(MAKE) qa-security-checker
$(MAKE) qa-phpcpd
$(MAKE) qa-lint-twigs
$(MAKE) qa-lint-yaml
$(MAKE) qa-lint-container
$(MAKE) qa-lint-schema
$(MAKE) tests
before-commit: qa-cs-fixer qa-phpstan qa-security-checker qa-phpcpd qa-lint-twigs qa-lint-yaml qa-lint-container qa-lint-schema tests ## Run before commit.
.PHONY: before-commit

first-install: ## First install.
$(MAKE) docker-up
$(MAKE) composer-install
$(MAKE) npm-install
$(MAKE) npm-build
$(MAKE) sf-perm
$(MAKE) sf-dc
$(MAKE) sf-dmm
$(MAKE) sf-start
$(MAKE) sf-open
first-install: docker-up composer-install npm-install npm-build sf-perm sf-dc sf-dmm sf-start sf-open ## First install.
.PHONY: first-install

start: ## Start project.
$(MAKE) docker-up
$(MAKE) sf-start
$(MAKE) sf-open
start: docker-up sf-start sf-open ## Start project.
.PHONY: start

stop: ## Stop project.
$(MAKE) docker-stop
$(MAKE) sf-stop
stop: docker-stop sf-stop ## Stop project.
.PHONY: stop

reset-db: ## Reset database.
Expand Down