oc-workspace/Makefile
2025-03-28 08:49:39 +01:00

36 lines
667 B
Makefile
Executable File

.DEFAULT_GOAL := all
build: clean
bee pack
run:
bee run -gendoc=true -downdoc=true
purge:
lsof -t -i:8089 | 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
clean:
rm -rf oc-workspace.tar.gz
docker:
DOCKER_BUILDKIT=1 docker build -t oc/oc-workspace:0.0.1 -f Dockerfile .
docker tag oc/oc-workspace:0.0.1 oc/oc-workspace:latest
publish-kind:
kind load docker-image oc/oc-workspace:0.0.1 --name opencloud
publish-registry:
@echo "TODO"
all: docker publish-kind publish-registry
.PHONY: build run clean docker publish-kind publish-registry