This commit is contained in:
mr
2025-04-01 10:09:25 +02:00
parent 1aa6c68b2c
commit 3ae9f69525
9 changed files with 212 additions and 12 deletions

View File

@@ -6,8 +6,13 @@ build: clean
run:
bee run -gendoc=true -downdoc=true
dev:
bee generate routers && HTTPPORT=8092 bee run -gendoc=true -downdoc=true -runmode=dev
purge:
lsof -t -i:8092 | xargs kill | true
run-dev:
bee generate routers && bee run -gendoc=true -downdoc=true -runmode=prod
dev: purge run-dev
debug:
bee run -downdebug -gendebug
@@ -27,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