-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e017dad
commit fca11d7
Showing
11 changed files
with
85 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
include ./.dam/make/.dist/* | ||
include ./.dam/make/.core/* | ||
include ./.dam/make/.dist/.test/* | ||
|
||
## ——————————————————————————————— #️⃣ Makefile #️⃣ —————————————————————————————— | ||
## | ||
help: ## Outputs this help screen | ||
@grep -h -E '(^[a-zA-Z0-9_-]+:.*?##.*$$)|(^##)' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}{printf "${_C_GREEN}%-30s${_C_STOP} %s\n", $$1, $$2}' | sed -e 's/\[32m##/[33m/' | ||
|
||
## | ||
## —— Installation 🏗️ ——————————————————————————-——————————————————————————————— | ||
install: _install ## Perform installation procedure | ||
uninstall: _uninstall_not_possible ## Run uninstall procedure | ||
|
||
init: _init_not_possible ## Initialize project and start docker hub | ||
|
||
%: ## unknown target | ||
@${_ECHO} "${_C_ERROR} ERROR ${_C_STOP} Unknown target: ${_C_YELLOW}$@${_C_STOP}" |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
include ./.make/.core/* | ||
include ./.make/.include/* | ||
include ./.dam/make/.core/* | ||
ifneq ("$(wildcard $(_INCLUDE_DIR)/*.Makefile)","") | ||
include $(wildcard $(_INCLUDE_DIR)/*.Makefile) | ||
endif | ||
include ${_PROJECT_DIR}/project.Makefile | ||
include ./.dam/var.Makefile | ||
|
||
## ——————————————————————————————— #️⃣ Makefile #️⃣ —————————————————————————————— | ||
## | ||
help: ## Outputs this help screen | ||
@grep -h -E '(^[a-zA-Z0-9_-]+:.*?##.*$$)|(^##)' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}{printf "${_C_GREEN}%-30s${_C_STOP} %s\n", $$1, $$2}' | sed -e 's/\[32m##/[33m/' | ||
@${_ECHO} ""; | ||
|
||
%: ## unknown target | ||
@${_ECHO} "${_C_ERROR} ERROR ${_C_STOP} Unknown target: ${_C_YELLOW}$@${_C_STOP}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
ifeq ($(wildcard $(_ENV_FILE)),) | ||
# file does not exist | ||
else | ||
include $(_ENV_FILE) # to include environment variables | ||
endif | ||
|
||
PROJECT_NAME=project.name | ||
PROJECT_SHORT_TITLE=✨ | ||
|
||
# DO NOT EDIT! See _VAR_FILE variable | ||
# Git related variables | ||
WORKING_BRANCH=dev | ||
DEFAULT_COMMIT_MESSAGE=~wp | ||
|
||
# Docker compose files | ||
|
||
# _FILES = -f ${_DOCKER_COMPOSE_FILE} -f docker-compose.override.${_DC_EXTENSION} | ||
_FILES = -f ${_DOCKER_COMPOSE_FILE} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.idea/ | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,2 @@ | ||
include ./.dam/make/.dist/* | ||
include ./.dam/make/.core/* | ||
include ./.dam/make/.dist/.test/* | ||
|
||
## ——————————————————————————————— #️⃣ Makefile #️⃣ —————————————————————————————— | ||
## | ||
help: ## Outputs this help screen | ||
@grep -h -E '(^[a-zA-Z0-9_-]+:.*?##.*$$)|(^##)' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}{printf "${_C_GREEN}%-30s${_C_STOP} %s\n", $$1, $$2}' | sed -e 's/\[32m##/[33m/' | ||
|
||
## | ||
## —— Installation 🏗️ ——————————————————————————-——————————————————————————————— | ||
install: _install ## Perform installation procedure | ||
uninstall: _uninstall_not_possible ## Run uninstall procedure | ||
|
||
init: _init_not_possible ## Initialize project and start docker hub | ||
|
||
%: ## unknown target | ||
@${_ECHO} "${_C_ERROR} ERROR ${_C_STOP} Unknown target: ${_C_YELLOW}$@${_C_STOP}" | ||
# Include core | ||
include ./.dam/make/core.Makefile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
🐮 Dev App | ||
🚧 Project |