Files
cannaiq/k8s/findadispo-frontend.yaml
Kelly a0f8d3911c 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>
2025-12-05 16:10:15 -07:00

42 lines
867 B
YAML

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