-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.variables
More file actions
46 lines (36 loc) · 885 Bytes
/
Makefile.variables
File metadata and controls
46 lines (36 loc) · 885 Bytes
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
# Colors for better visibility
COLOR_RESET=\033[0m
COLOR_BLUE=\033[34m
COLOR_GREEN=\033[32m
COLOR_RED=\033[31m
COLOR_YELLOW=\033[33m
# Symbols
SYM_ARROW=➜
SYM_SUCCESS=✔
SYM_ERROR=✖
SYM_WARNING=⚠
# Image and Container Configuration
DOCKER_IMAGE := usabilitydynamics/udx-worker-php:latest
CONTAINER_NAME := udx-worker-php-container
VOLUMES ?= ./src/scripts:/var/www
ENV_FILE ?= .env
CMD ?= /bin/bash
# Platform and Build Configuration
MULTIPLATFORM := false
BUILD_PLATFORMS := linux/amd64,linux/arm64
# Port Configuration
HOST_PORT := 80
CONTAINER_PORT := 80
# PHP Configuration
PHP_VERSION := 8.4
# Paths
SRC_PATH := src
CONTAINER_SRC_PATH := /var/www
# Specific test script name
TEST_SCRIPT := test.php
# Path for all test scripts
TESTS_PATH := $(CONTAINER_SRC_PATH)/tests
# Parallelism for running tests
TEST_PARALLELISM := 4
# Additional flags
FOLLOW_LOGS ?= false