Import project backup into new git repo

This commit is contained in:
Victor Lacasse-Beaudoin 2023-02-17 15:43:23 -05:00
commit 9606d8c2df
20 changed files with 1430 additions and 0 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
# SHELL = /bin/sh
.DEFAULT_GOAL := help
.PHONY: help
help: ## Show this help
@egrep -h '\s##\s' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
.PHONY: build
build: ## Build une image selon ./Dockerfile
docker build -t agecem/babillard:latest .