Removing useless binary in conf + managing services url resolution at runtime

This commit is contained in:
plm
2025-01-09 10:29:31 +01:00
parent 2c86e90b76
commit 047591d031
118 changed files with 1185 additions and 4699 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
.DEFAULT_GOAL := all
all:
clean docker publish-kind publish-registry
run:
flutter run
clean:
rm -rf build
docker:
DOCKER_BUILDKIT=1 docker build -t oc/oc-front:0.0.1 -f Dockerfile .
docker tag oc/oc-front:0.0.1 oc/oc-front:latest
publish-kind:
kind load docker-image oc/oc-front:0.0.1 --name opencloud
publish-registry:
@echo "TODO"
.PHONY: build run clean docker publish-kind publish-registry