-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
52 lines (37 loc) · 1.22 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
############################################################
# PROJECT ##################################################
############################################################
.PHONY: project install setup clean
project: install setup
install:
composer install
setup:
mkdir -p var/tmp var/log
chmod +0777 var/tmp var/log
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 dev cs csf phpstan tests coverage dev build
qa: cs phpstan
cs:
vendor/bin/codesniffer app
csf:
vendor/bin/codefixer app
phpstan:
vendor/bin/phpstan analyse -c phpstan.neon --memory-limit=512M app
tests:
echo "OK"
coverage:
echo "OK"
dev:
NETTE_DEBUG=1 NETTE_ENV=dev php -S 0.0.0.0:8000 -t www
build:
echo "BUILD OK"
############################################################
# DEPLOYMENT ###############################################
############################################################
.PHONY: deploy
deploy: clean project build