This commit is contained in:
mr
2025-04-01 10:16:26 +02:00
parent 5ca9a10d14
commit 3d42ce6820
25 changed files with 185 additions and 369 deletions

View File

@@ -1,22 +1,18 @@
.DEFAULT_GOAL := all
build: clean
bee pack
hydra:
docker compose -f ./ldap-hydra/docker-compose.yml up -d
keto:
docker compose -f ./keto/docker-compose.yml up -d
run:
bee run -gendoc=true -downdoc=true
run-dev:
bee generate routers && HTTPPORT=8094 bee run -gendoc=true -downdoc=true
purge:
lsof -t -i:8094 | xargs kill | true
dev: hydra keto run-dev
run-dev:
bee generate routers && bee run -gendoc=true -downdoc=true -runmode=prod
dev: purge run-dev
debug:
bee run -downdebug -gendebug
@@ -36,4 +32,4 @@ publish-registry:
all: docker publish-kind publish-registry
.PHONY: build run clean docker publish-kind publish-registry
.PHONY: build run clean docker publish-kind publish-registry