feat(teamstore): add league/conference sub-sub-category pill filter (hi-five-franchise-store only)

This commit is contained in:
Frank John Begornia
2026-04-16 23:19:19 +08:00
parent 49921a26a9
commit 4888f93eac
7 changed files with 578 additions and 78 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
COMPOSE_LOCAL = docker compose -f docker-compose.local.yml
# ── Local stack (local MariaDB) ───────────────────────────────────────────────
up:
$(COMPOSE_LOCAL) up --build
down:
$(COMPOSE_LOCAL) down
# ── Local stack with SSH tunnel to remote DB ──────────────────────────────────
up-ssh:
$(COMPOSE_LOCAL) --env-file .env.local --profile ssh-db up --build
down-ssh:
$(COMPOSE_LOCAL) --env-file .env.local --profile ssh-db down
.PHONY: up down up-ssh down-ssh