forked from bcgov/STRR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
18 lines (14 loc) · 796 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: docker
.PHONY: migrate
#################################################################################
# COMMANDS - CI #
#################################################################################
docker: ## Run entire environment locally using docker-compose
docker compose up --build
#################################################################################
# Self Documenting Commands #
#################################################################################
.PHONY: help
.DEFAULT_GOAL := help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'