yarn package upgrades, ssr update

This commit is contained in:
2023-11-15 07:00:12 +00:00
parent f1d30945c1
commit 942f92c477
18 changed files with 1800 additions and 1392 deletions

View File

@@ -1,9 +1,8 @@
DOCKER_COMPOSE=docker compose -f docker-compose-local.yml
DOCKER_ALL_PROFILES=--profile docpress --profile tibi-dev --profile tibi --profile chisel
.DEFAULT_GOAL := help
.PHONY: docker-up docker-up-tibi-dev docker-up-chisel docker-up-docpress docker-start docker-start-tibi-dev docker-down docker-ps docker-logs docker-pull yarn-upgrade fix-permissions
.PHONY: docker-up docker-up-tibi-dev docker-start docker-start-tibi-dev docker-down docker-ps docker-logs yarn-upgrade fix-permissions
include ./.env
@@ -21,25 +20,25 @@ docker-up-chisel: ## bring up chisel tunnel
$(DOCKER_COMPOSE) --profile chisel up -d
docker-down: ## take docker compose stack down
$(DOCKER_COMPOSE) $(DOCKER_ALL_PROFILES) down
$(DOCKER_COMPOSE) --profile tibi-dev --profile tibi --profile chisel down
docker-start: ## start docker compose stack in foreground and take it down after CTRL-C
$(DOCKER_COMPOSE) --profile tibi up; $(DOCKER_COMPOSE) $(DOCKER_ALL_PROFILES) down
$(DOCKER_COMPOSE) --profile tibi up; $(DOCKER_COMPOSE) --profile tibi-dev --profile tibi --profile chisel down
docker-start-tibi-dev: ## start docker compose stack in foreground and take it down after CTRL-C (with tibi-dev)
$(DOCKER_COMPOSE) --profile tibi-dev up; $(DOCKER_COMPOSE) $(DOCKER_ALL_PROFILES) down
$(DOCKER_COMPOSE) --profile tibi-dev up; $(DOCKER_COMPOSE) --profile tibi-dev --profile tibi --profile chisel down
docker-ps: ## show container state
$(DOCKER_COMPOSE) $(DOCKER_ALL_PROFILES) ps
$(DOCKER_COMPOSE) --profile tibi-dev --profile tibi --profile chisel ps
docker-logs: ## show docker logs and follow
$(DOCKER_COMPOSE) $(DOCKER_ALL_PROFILES) logs -f || true
$(DOCKER_COMPOSE) --profile tibi-dev --profile tibi --profile chisel logs -f --tail=100 || true
docker-pull: ## pull docker images
$(DOCKER_COMPOSE) $(DOCKER_ALL_PROFILES) pull
$(DOCKER_COMPOSE) --profile tibi-dev --profile tibi --profile chisel pull
docker-%:
$(DOCKER_COMPOSE) $(DOCKER_ALL_PROFILES) $*
$(DOCKER_COMPOSE) $*
yarn-upgrade: # interactive yarn upgrade
$(DOCKER_COMPOSE) run --rm yarnstart yarn upgrade-interactive