This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
69 lines (55 loc) · 1.68 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
.SILENT:
IS_ENV_PRESENT=$(shell test -e .env && echo -n yes)
PIP_BIN = pip
PY_BIN = python
ifeq ($(IS_ENV_PRESENT), yes)
include .env
export $(shell sed 's/=.*//' .env)
endif
# Colors
COLOR_RESET = \033[0m
COLOR_INFO = \033[32m
COLOR_COMMENT = \033[33m
## This help screen
help:
printf "${COLOR_COMMENT}Usage:${COLOR_RESET}\n"
printf " make [target]\n\n"
printf "${COLOR_COMMENT}Available targets:${COLOR_RESET}\n"
awk '/^[a-zA-Z\-\_0-9\.@]+:/ { \
helpMessage = match(lastLine, /^## (.*)/); \
if (helpMessage) { \
helpCommand = substr($$1, 0, index($$1, ":")); \
helpMessage = substr(lastLine, RSTART + 3, RLENGTH); \
printf " ${COLOR_INFO}%-16s${COLOR_RESET}\t\t%s\n", helpCommand, helpMessage; \
} \
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST)
## Run with test configuration
run:
./bin/deployer.py --configuration=./tests/.deployer.yml
## Install requirements
install_dependencies:
${PIP_BIN} install -r ./requirements.txt
## Run unit tests
test:
${PY_BIN} -m unittest discover -s ./tests
## Build PyPI package
build:
${PY_BIN} ./setup.py build
## Install as Python package globally
install_as_python_package:
${PY_BIN} ./setup.py install
## Install as Python package in current user directory
install_as_python_package_nonprivileged:
${PY_BIN} ./setup.py install --user
## Build and run a Docker container
container: build_container run_container
## Build Docker container
build_container:
sudo docker build . -t wolnosciowiec/thin-deployer
## Push Docker container to the registry
push_container:
sudo docker push wolnosciowiec/thin-deployer
## Run Docker container
run_container:
sudo docker run -p 8012:8012 --rm --name thin-deployer wolnosciowiec/thin-deployer