-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
56 lines (41 loc) · 1.39 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
############################################################
# PROJECT ##################################################
############################################################
.PHONY: project install setup clean
project: install setup
install:
composer install
setup:
mkdir -p temp log
chmod +0777 temp log
clean:
find temp -mindepth 1 ! -name '.gitignore' -type f,d -exec rm -rf {} +
find log -mindepth 1 ! -name '.gitignore' -type f,d -exec rm -rf {} +
############################################################
# DEVELOPMENT ##############################################
############################################################
.PHONY: qa dev cs csf phpstan tests coverage dev build
qa: cs phpstan
cs:
vendor/bin/codesniffer app tests
csf:
vendor/bin/codefixer app tests
phpstan:
vendor/bin/phpstan analyse -c phpstan.neon --memory-limit=512M app tests/toolkit
tests:
vendor/bin/tester -s -p php --colors 1 -C tests
coverage:
vendor/bin/tester -s -p phpdbg --colors 1 -C --coverage ./coverage.xml --coverage-src ./app tests
dev:
NETTE_DEBUG=1 NETTE_ENV=dev php -S 0.0.0.0:8000 -t www
build:
echo "BUILD OK"
############################################################
# DEPLOYMENT ###############################################
############################################################
.PHONY: deploy
deploy:
$(MAKE) clean
$(MAKE) project
$(MAKE) build
$(MAKE) clean