2019-09-16 09:38:33 +00:00
|
|
|
export GIT_ROOT = $(shell git rev-parse --show-toplevel)
|
2019-02-06 16:47:01 +00:00
|
|
|
|
|
|
|
RED := $(shell tput -Txterm setaf 1)
|
|
|
|
GREEN := $(shell tput -Txterm setaf 2)
|
|
|
|
YELLOW := $(shell tput -Txterm setaf 3)
|
|
|
|
RESET := $(shell tput -Txterm sgr0)
|
|
|
|
BOLD := $(shell tput bold)
|
|
|
|
|
|
|
|
# Settings
|
2019-02-18 15:23:18 +00:00
|
|
|
export LOG_LEVEL ?= INFO
|
|
|
|
export LISTEN_PORT ?= 30303
|
|
|
|
export RPC_PORT ?= 8545
|
2019-11-15 09:35:26 +00:00
|
|
|
export API_MODULES ?= eth,net,web3,admin,mailserver
|
2019-02-06 16:47:01 +00:00
|
|
|
export CONTAINER_NAME ?= status-go-mailserver
|
2019-02-18 15:23:18 +00:00
|
|
|
export DATA_PATH ?= /var/tmp/status-go-mail
|
|
|
|
export FLEET_NAME ?= eth.beta
|
2019-04-01 12:08:52 +00:00
|
|
|
export REGISTER_TOPIC ?= whispermail
|
|
|
|
export MAIL_PASSWORD ?= status-offline-inbox
|
2019-02-06 16:47:01 +00:00
|
|
|
# Necessary to make mailserver available publicly
|
2019-02-18 15:23:18 +00:00
|
|
|
export PUBLIC_IP ?= $(shell curl -s https://ipecho.net/plain)
|
2019-02-06 16:47:01 +00:00
|
|
|
|
|
|
|
all: checks start show info enode
|
|
|
|
|
|
|
|
checks:
|
2019-12-16 22:27:01 +00:00
|
|
|
ifeq (, $(shell which docker))
|
|
|
|
$(error No $(BOLD)docker$(RESET) in your $$PATH. Please install it)
|
|
|
|
endif
|
|
|
|
ifeq (, $(shell docker version | grep Server))
|
2019-12-16 22:27:13 +00:00
|
|
|
$(error No permissions to run $(BOLD)docker$(RESET). Add yourself to docker group)
|
2019-12-16 22:27:01 +00:00
|
|
|
endif
|
2019-02-06 16:47:01 +00:00
|
|
|
ifeq (, $(shell which docker-compose))
|
|
|
|
$(error No $(BOLD)docker-compose$(RESET) in your $$PATH. Please install it)
|
|
|
|
endif
|
|
|
|
ifeq (, $(shell which jq))
|
|
|
|
$(error No $(BOLD)jq$(RESET) in your $$PATH. Please install it)
|
|
|
|
endif
|
|
|
|
ifndef PUBLIC_IP
|
|
|
|
$(error PUBLIC_IP not set! Export it as environment variable)
|
|
|
|
endif
|
|
|
|
ifndef CONTAINER_NAME
|
|
|
|
$(error CONTAINER_NAME not set! Export it as environment variable)
|
|
|
|
endif
|
|
|
|
|
|
|
|
start: config
|
|
|
|
docker-compose up -d
|
|
|
|
|
|
|
|
stop:
|
|
|
|
docker-compose down
|
|
|
|
|
|
|
|
logs:
|
|
|
|
docker-compose logs -f -t --tail=100
|
|
|
|
|
|
|
|
enode:
|
2019-09-16 09:38:33 +00:00
|
|
|
@$(GIT_ROOT)/_assets/scripts/get_enode.sh
|
2019-02-06 16:47:01 +00:00
|
|
|
|
2019-09-16 09:38:33 +00:00
|
|
|
config:
|
|
|
|
@$(GIT_ROOT)/_assets/scripts/gen_config.sh
|
2019-02-06 16:47:01 +00:00
|
|
|
|
|
|
|
info:
|
|
|
|
@echo "$(GREEN)Your mailserver is listening on:$(RESET) $(BOLD)$(PUBLIC_IP):$(LISTEN_PORT)$(RESET)"
|
2019-04-01 09:37:42 +00:00
|
|
|
@echo "$(YELLOW)Make sure that address and TCP port are available from the internet!$(RESET)"
|
2019-02-06 16:47:01 +00:00
|
|
|
@echo "$(GREEN)Your enode address is:$(RESET)"
|
|
|
|
|
|
|
|
show:
|
2019-09-16 09:38:33 +00:00
|
|
|
@docker ps \
|
|
|
|
--filter='name=$(CONTAINER_NAME)' \
|
|
|
|
--format="table {{.ID}}\t{{.Names}}\t{{.Status}}\t{{.Ports}}"
|
2019-02-06 16:47:01 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
docker-compose rm -s -f
|