Makefile 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. VERSION="1.0.1"
  2. DOCKER_IMG_NAME := golang-ip2location
  3. CURRENT_DIR := $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
  4. DATA_DIR := ${CURRENT_DIR}/data
  5. .PHONY: default
  6. default: test
  7. include .makefile/minimal.makefile
  8. include .makefile/build.makefile
  9. include .makefile/docker.makefile
  10. test:
  11. go test `go list ./... \
  12. | grep -v cmd/ip2location \
  13. | grep -v internal/consts \
  14. | grep -v internal/server/web`
  15. debug:
  16. @-rm ./bin/ip2location
  17. make all
  18. ./bin/ip2location \
  19. -data_dir ${DATA_DIR} \
  20. -db_update_time 60 \
  21. -deployment development \
  22. -host 0.0.0.0 \
  23. -port 8080 \
  24. -web_url http://localhost:8080/ \
  25. color=always
  26. docker-test:
  27. docker run --rm \
  28. --network host \
  29. --name ${DOCKER_IMG_NAME}-test \
  30. -e ENV_DATA_DIR="/app/data" \
  31. -e ENV_DB_UPDATE_TIME="60" \
  32. -e ENV_DEPLOYMENT="deployment" \
  33. -e ENV_HOST="127.0.0.1" \
  34. -e ENV_PORT="8080" \
  35. -e ENV_WEB_URL="http://localhost:8080/" \
  36. -v /etc/timezone:/etc/timezone:ro \
  37. -v ${CURRENT_DIR}/data:/app/data \
  38. -it ${DOCKER_IMG_NAME}:latest