-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
48 lines (38 loc) · 1.5 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
.PHONY: all help install venv run
help: ## Display this help
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-\\.]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
all: help
.PHONY: build
build: ## Build a Docker image
$(info Building Docker image...)
docker build --rm --pull --tag products:1.0 .
venv: ## Create a Python virtual environment
$(info Creating Python 3 virtual environment...)
python3 -m venv ~/venv
install: ## Install Python dependencies
$(info Installing dependencies...)
python3 -m pip install --upgrade pip wheel
pip install -r requirements.txt
lint: ## Run the linter
$(info Running linting...)
flake8 service tests --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 service tests --count --max-complexity=10 --max-line-length=127 --statistics
pylint service tests --max-line-length=127
.PHONY: tests
tests: ## Run the unit tests
$(info Running tests...)
nosetests -vv --with-spec --spec-color --with-coverage --cover-package=service
run: ## Run the service
$(info Starting service...)
honcho start
dbrm: ## Stop and remove PostgreSQL in Docker
$(info Stopping and removing PostgreSQL...)
-docker stop postgres
-docker rm postgres
db: ## Run PostgreSQL in Docker
$(info Running PostgreSQL...)
docker run -d --name postgres \
-p 5432:5432 \
-e POSTGRES_PASSWORD=postgres \
-v postgres:/var/lib/postgresql/data \
postgres:alpine