-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
78 lines (63 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
############################################################
# PROJECT ##################################################
############################################################
.PHONY: project
project: install setup
.PHONY: init
init:
cp config/local.neon.example config/local.neon
.PHONY: install
install:
composer install
.PHONY: setup
setup:
mkdir -p var/tmp var/log
chmod 0777 var/tmp var/log
.PHONY: clean
clean:
find var/tmp -mindepth 1 ! -name '.gitignore' -type f,d -exec rm -rf {} +
find var/log -mindepth 1 ! -name '.gitignore' -type f,d -exec rm -rf {} +
############################################################
# DEVELOPMENT ##############################################
############################################################
.PHONY: qa
qa: cs phpstan
.PHONY: cs
cs:
vendor/bin/codesniffer app tests
.PHONY: csf
csf:
vendor/bin/codefixer app tests
.PHONY: phpstan
phpstan:
vendor/bin/phpstan analyse -c phpstan.neon --memory-limit=512M
.PHONY: tests
tests:
vendor/bin/tester -s -p php --colors 1 -C tests
.PHONY: coverage
coverage:
vendor/bin/tester -s -p phpdbg --colors 1 -C --coverage ./coverage.xml --coverage-src ./app tests
.PHONY: dev
dev:
NETTE_DEBUG=1 NETTE_ENV=dev php -S 0.0.0.0:8000 -t www
.PHONY: consume
consume:
XDEBUG_MODE=debug XDEBUG_SESSION=1 bin/console messenger:consume redis
.PHONY: build
build:
echo "OK"
############################################################
# DOCKER ###################################################
############################################################
.PHONY: docker-up
docker-up:
docker compose up
############################################################
# DEPLOYMENT ###############################################
############################################################
.PHONY: deploy
deploy:
$(MAKE) clean
$(MAKE) project
$(MAKE) build
$(MAKE) clean