-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
59 lines (47 loc) · 1.17 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
NAME=Marketplace
VERSION=0.0.1
ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
RELEASE_PACKAGE:=ldesplanche/marketplace
.PHONY: docker
docker:
@docker run -v "$(ROOT_DIR)/src":"/web" -p 8080:8080 --name "marketplace_server_dev" --rm ldesplanche/marketplace_dev
.PHONY: release
release:
@docker build $(ROOT_DIR) -t $(RELEASE_PACKAGE)
@docker push $(RELEASE_PACKAGE)
.PHONY: docker-dev-image
docker-dev-image:
@docker build -t ldesplanche/marketplace_dev - < dev.Dockerfile
.PHONY: build
## build: Compile the packages.
build:
@go build -o $(NAME)
.PHONY: run
## run: Build and Run in development mode.
run: build
@./$(NAME) -e dev
.PHONY: run-prod
## run-prod: Build and Run in production mode.
run-prod: build
@./$(NAME) -e prod
.PHONY: clean
## clean: Clean project and previous builds.
clean:
@rm -f $(NAME)
.PHONY: deps
## deps: Download modules
deps:
@go mod download
.PHONY: test
## test: Run tests with verbose mode
test:
@go test -v ./tests/*
.PHONY: help
all: help
# help: show this help message
help: Makefile
@echo
@echo " Choose a command to run in "$(APP_NAME)":"
@echo
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
@echo