From e0bbcf762b098082d927977e5ba50c1b23ae2b96 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Sun, 10 Oct 2021 04:11:32 +0200 Subject: [PATCH] Makefile: Add command to run CLI configuration --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 1e4108118..473fbf17f 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,10 @@ check-machine: ## Check your local machine setup to be prepared for the installa cli: ## Install koolbox CLI (Contains all tools used in this project) cd ./cli && make install +.PHONY: cli-config +cli-config: ## Configure koolbox CLI (To setup terraform values as well was tokens) + cd ./cli && make config + .PHONY: deploy deploy: check-machine ## Deploy infrastructure on Hetzner Cloud cd ./terraform && make apply -- GitLab