-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·51 lines (44 loc) · 1.41 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
DOCKER_IMAGE ?= f00b4r/nettefly
DOCKER_PLATFORM ?= linux/amd64,linux/arm64
DOCKER_VERSION ?= latest
############################################################
# PROJECT ##################################################
############################################################
.PHONY: install
install:
composer install
.PHONY: project
project:
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: dev
dev:
NETTE_DEBUG=1 NETTE_ENV=dev php -S 0.0.0.0:8080 -t www
############################################################
# DOCKER ###################################################
############################################################
.PHONY: docker-build
docker-build:
docker buildx \
build \
--platform ${DOCKER_PLATFORM} \
--pull \
-t ${DOCKER_IMAGE}:${DOCKER_VERSION} \
.
############################################################
# DEPLOYMENT ###############################################
############################################################
.PHONY: setup
setup:
$(MAKE) project
$(MAKE) clean
.PHONY: deploy
deploy:
flyctl deploy