feat: Add Findagram and FindADispo consumer frontends

- Add findagram.co React frontend with product search, brands, categories
- Add findadispo.com React frontend with dispensary locator
- Wire findagram to backend /api/az/* endpoints
- Update category/brand links to route to /products with filters
- Add k8s manifests for both frontends
- Add multi-domain user support migrations

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Kelly
2025-12-05 16:10:15 -07:00
parent d120a07ed7
commit a0f8d3911c
179 changed files with 140234 additions and 600 deletions

View File

@@ -0,0 +1,41 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: findadispo-frontend
namespace: dispensary-scraper
spec:
replicas: 1
selector:
matchLabels:
app: findadispo-frontend
template:
metadata:
labels:
app: findadispo-frontend
spec:
imagePullSecrets:
- name: regcred
containers:
- name: findadispo-frontend
image: code.cannabrands.app/creationshop/findadispo-frontend:v1.0.0
ports:
- containerPort: 80
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "100m"
---
apiVersion: v1
kind: Service
metadata:
name: findadispo-frontend
namespace: dispensary-scraper
spec:
selector:
app: findadispo-frontend
ports:
- port: 80
targetPort: 80