-
Notifications
You must be signed in to change notification settings - Fork 31
/
Makefile
57 lines (47 loc) · 1.66 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
# Styles
YELLOW := $(shell echo "\033[00;33m")
RED := $(shell echo "\033[00;31m")
RESTORE := $(shell echo "\033[0m")
# Variables
DOCKER_COMPOSE_ARGS := COMPOSE_PROJECT_NAME=furnituremix COMPOSE_FILE=provisioning/dev/docker-compose.yaml
DOCKER_COMPOSE := $(DOCKER_COMPOSE_ARGS) docker compose
NPM := npm
CADDY = caddy
CADDY_PID_FILE := provisioning/dev/caddy.dev.pid
.DEFAULT_GOAL := list
.PHONY: list
list:
@echo "******************************"
@echo "${RED}Remix Run - ${YELLOW}Available targets${RESTORE}:"
@grep -E '^[a-zA-Z-]+:.*?## .*$$' Makefile | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " ${YELLOW}%-15s${RESTORE} > %s\n", $$1, $$2}'
@echo "${RED}==============================${RESTORE}"
.PHONY: clean
clean: stop ## Clean non-essential files
@rm -rf application/node_modules
@$(DOCKER_COMPOSE) down
.PHONY: install
install:
@cp provisioning/clone/.env.dist application/.env
@cd application && $(NPM) install && $(NPM) run playwright:install && cd ..
.PHONY: npmupdate
npmupdate: ## npmupdate
@cd application && $(NPM) update && cd ..
.PHONY: serve-application
serve-application: ## Service the Application
@cd application && $(NPM) run dev
.PHONY: stop
stop: ## Stop all the local services you need
-@$(DOCKER_COMPOSE) stop > /dev/null 2>&1
-@$(CADDY) stop > /dev/null 2>&1 &
-@if [ -f $(CADDY_PID_FILE) ]; then \
kill -9 `cat $(CADDY_PID_FILE)`; \
rm -f $(CADDY_PID_FILE); \
fi
.PHONY: serve
serve: stop ## Run all the local services you need
@$(DOCKER_COMPOSE) up -d
@$(CADDY) start --config provisioning/dev/Caddyfile --pidfile provisioning/dev/caddy.dev.pid
@$(MAKE) serve-application
.PHONY: tests
tests: ## Tests
@cd application && $(NPM) run test