Sha256: 185862e75439e27c269b24bb1280a07aaa7e5294dd7f6a5ae7a667cb34f64933

Contents?: true

Size: 567 Bytes

Versions: 6

Compression:

Stored size: 567 Bytes

Contents

ifeq (,$(wildcard ./.env))
include .env
endif

#
# help
#
help: ## show help
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sed -e 's/^GNUmakefile://' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'

build: ## docker-compose build
	docker-compose build

up: ## docker-compose up
	docker-compose up -d --build

down: ## docker-compose down
	docker-compose down

logs: ## docker-compose logs
	docker-compose logs ruboty

restart: ## restart docker conmpose (with build)
	docker-compose down
	make -C . build
	docker-compose up -d

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruboty-slack_reaction_added-0.6.0 Makefile
ruboty-slack_reaction_added-0.5.0 Makefile
ruboty-slack_reaction_added-0.4.0 Makefile
ruboty-slack_reaction_added-0.3.0 Makefile
ruboty-slack_reaction_added-0.2.0 Makefile
ruboty-slack_reaction_added-0.1.0 Makefile