Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
fix: makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
kafkaphoenix committed Jan 16, 2025
1 parent 5d1d7cd commit 407082c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ help: ## This help
.DEFAULT_GOAL := help

.PHONY: login
login: ## Login to the aio platform
login: ## Login to the kai platform
kli server login --client-id kai-kli-oidc --realm konstellation

.PHONY: update-process-env
Expand Down
6 changes: 6 additions & 0 deletions src/demo-workflow/exits/exit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ PROCESS_VERSION ?= v0.0.2
PRODUCT_NAME := $(shell basename $(wildcard ./../../../../.kai/$(ENV)/*.yaml) .yaml)
PROCESS_ID = exit

# AutoDoc
# -------------------------------------------------------------------------
.PHONY: help
help: ## This help
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help

.PHONY: push-image
push-image: ## Push process image in this folder
Expand Down
6 changes: 6 additions & 0 deletions src/demo-workflow/tasks/training/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ PROCESS_VERSION ?= v0.0.4
PRODUCT_NAME := $(shell basename $(wildcard ./../../../../.kai/$(ENV)/*.yaml) .yaml)
PROCESS_ID = training

# AutoDoc
# -------------------------------------------------------------------------
.PHONY: help
help: ## This help
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help

.PHONY: push-image
push-image: ## Push process image in this folder
Expand Down
6 changes: 6 additions & 0 deletions src/demo-workflow/triggers/rest-trigger/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ PROCESS_VERSION ?= v0.0.1
PRODUCT_NAME := $(shell basename $(wildcard ./../../../../.kai/$(ENV)/*.yaml) .yaml)
PROCESS_ID = rest-trigger

# AutoDoc
# -------------------------------------------------------------------------
.PHONY: help
help: ## This help
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help

.PHONY: push-image
push-image: ## Push process image in this folder
Expand Down

0 comments on commit 407082c

Please sign in to comment.