-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
118 lines (101 loc) · 3.91 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# Colors
GRAY := \033[1;30m
GREEN := \033[0;32m
YELLOW := \033[1;33m
RED := \033[33;31m
DARKCYAN := \033[33;36m
NC := \033[0m
remove_vendor := rm -Rf vendor/; rm composer.lock;
# get uname
UNAME := $(shell uname)
# On Win 'docker-compose' | Mac 'docker compose'
docker := $(if $(filter $(UNAME), Linux), docker-compose, docker compose)
## -------------------------------------------------
## COMMON
## -------------------------------------------------
hello: app-hello info
help: app-help
all-commands: app-help
check-you-sure:
@echo -n "${RED}Are you sure? $(MSG)${NC} [Y/n] " && read ans && [ $${ans:-N} = Y ]
## Messages
message-docker-init:
$(eval MSG=All Docker containers will be deleted!)
message-docker-rebuild:
$(eval MSG=All Docker containers will be deleted!)
message-composer-install:
$(eval MSG=The 'vendor/' directory and 'composer.lock' file will be removed!)
app-help: info-docker
app-hello:
@echo ""
@echo "${YELLOW}---------------------------------------------------${NC}"
@echo "${YELLOW}Hello, Boss! I'm Lucy! What would you like to do?${NC}"
@echo "${YELLOW}---------------------------------------------------${NC}"
info:
@echo "${GREEN}info-docker${NC} \t\t - list of commands for Docker"
@echo "${GREEN}info-general${NC} \t\t - list of general commands"
@echo "${GREEN}info-composer${NC} \t\t - list of commands for Composer"
## -------------------------------------------------
## DOCKER
## -------------------------------------------------
info-docker:
@echo ""
@echo "${GRAY}# -------------------------------------------------"
@echo "# DOCKER"
@echo "# -------------------------------------------------${NC}"
@echo "${GREEN} init${NC} \t\t\t - perform full initialization of docker"
@echo "${GREEN} up${NC} \t\t\t - run docker containers"
@echo "${GREEN} down${NC} \t\t\t - down docker containers"
@echo "${GREEN} rebuild${NC} \t\t - rebuild docker containers"
@echo "${GREEN} ps${NC} \t\t\t - show running docker containers"
init: docker-commands-init
up: docker-up docker-ps
down: docker-down
rebuild: docker-commands-rebuild
ps: docker-ps
docker-commands-init:
make message-docker-init check-you-sure docker-down docker-pull docker-build-pull docker-up docker-ps composer-install
docker-ps:
$(docker) ps
@echo ""
docker-up:
$(docker) up -d
docker-down:
$(docker) down -v --remove-orphans
docker-pull:
$(docker) pull
docker-build-pull:
$(docker) build --pull
docker-commands-rebuild:
make message-docker-rebuild check-you-sure docker-down docker-rebuild
docker-rebuild:
$(docker) up --build -d
## -------------------------------------------------
## GENERAL
## -------------------------------------------------
info-general:
@echo "${GREEN} bash${NC} \t\t\t - start bash in container"
# Bash: example: make exe c="pwd && ls -al ."
bash:
$(docker) exec app /bin/bash -c "bash"
## -------------------------------------------------
## COMPOSER
## -------------------------------------------------
info-composer:
@echo ""
@echo "${GRAY}# -------------------------------------------------"
@echo "# COMPOSER"
@echo "# -------------------------------------------------${NC}"
@echo "${GREEN} composer-install${NC} \t - install the defined dependencies"
@echo "${GREEN} composer-update${NC} \t - initially install the defined dependencies. Ex.: 'make composer-update args=-vvv'"
@echo "${GREEN} composer-dump${NC} \t\t - re-generate the vendor/autoload.php file"
@echo "${GREEN} composer-du${NC} \t\t - alias for composer-dump command"
composer-install: message-composer-install check-you-sure composer-install-command composer-dump
composer-install-command:
$(docker) exec app /bin/bash -c "$(remove_vendor) composer install $(args)"
composer-update: composer-update-command composer-dump
composer-update-command:
$(docker) exec app /bin/bash -c "composer update $(args)"
composer-du: composer-dump
composer-dump:
$(docker) exec app /bin/bash -c "composer dump-autoload --quiet --optimize --classmap-authoritative $(args)"