-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
56 lines (45 loc) · 1.8 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
.PHONY: help
.DEFAULT_GOAL = help
dc = docker compose
de = $(dc) exec
## —— Docker 🐳 ———————————————————————————————————————————————————————————————
.PHONY: start
start: ## project installation
$(dc) up -d
$(de) php bash -c 'composer install'
$(de) php bash -c 'yarn && yarn run dev'
$(de) php bash -c 'php artisan key:generate'
$(de) php bash -c 'php artisan migrate'
.PHONY: build
build: ## Installation of the production project
$(dc) up -d
$(de) php bash -c 'composer install'
$(de) php bash -c 'yarn install && yarn build'
$(de) php bash -c 'php artisan key:generate'
$(de) php bash -c 'php artisan migrate'
.PHONY: dev
dev: ## start container
$(dc) up -d
.PHONY: in-dc
in-dc: ## connexion container php
$(de) php bash
.PHONY: delete
delete: ## delete container
$(dc) down
$(dc) kill
$(dc) rm
## —— Tools 🛠️️ ———————————————————————————————————————————————————————————————
.PHONY: cs
cs: ## code style check
./vendor/bin/pint -v --test
.PHONY: fix
fix: ## code style fix
./vendor/bin/pint
.PHONY: phpstan
phpstan: ## phpstan
vendor/bin/phpstan analyse --memory-limit=2G
.PHONY: test
test: cs phpstan ## test this project
## —— Others 🛠️️ ———————————————————————————————————————————————————————————————
help: ## listing command
@grep -E '(^[a-zA-Z0-9_-]+:.*?##.*$$)|(^##)' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}{printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}' | sed -e 's/\[32m##/[33m/'