feat: jinja template for cards
Python Lint CI / ruff (push) Successful in 1m13s
Python Lint CI / ty (push) Successful in 1m23s
Python Lint CI / ruff-format-check (push) Successful in 1m23s
TS Lint / Oxlint (push) Failing after 2m17s
TS Lint / ESLint (push) Successful in 3m0s
TS Lint / TypeScript (push) Successful in 2m47s
Docker Build / build (push) Successful in 6m4s

This commit is contained in:
2026-07-14 16:08:32 +02:00
parent 34fadcf6f6
commit b0f1f0db62
11 changed files with 67 additions and 97 deletions
+10
View File
@@ -22,6 +22,8 @@ ifeq (,$(shell which podman))
endif
DOCKER ?= podman
DOCKER_TAG ?= tout-doux
PORT ?= 5000
APP_EXEC ?= $(DOCKER) compose exec app
APP_RUN ?= $(DOCKER) compose run --rm app
@@ -147,6 +149,14 @@ docker-compose-down-%: ## docker compose down (container)
docker-compose-logs: ## docker compose logs
$(DOCKER) compose logs -f || true
.PHONY: docker-build
docker-build: ## docker build
$(DOCKER) build . -t $(DOCKER_TAG)
.PHONY: docker-run
docker-run: ## docker run
$(DOCKER) run -p $(PORT):5000 $(DOCKER_TAG)
.PHONY: tortoise-%
tortoise-%: .venv ## tortoise (command)
$(TORTOISE) --config-file tortoise-dev.json $*