- 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>
19 lines
359 B
Plaintext
19 lines
359 B
Plaintext
# Database
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/findadispo
|
|
|
|
# JWT Settings
|
|
SECRET_KEY=your-super-secret-key-change-in-production
|
|
ALGORITHM=HS256
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=30
|
|
|
|
# External API
|
|
DISPENSARY_API_URL=http://localhost:3010
|
|
DISPENSARY_API_KEY=your-api-key
|
|
|
|
# CORS
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
# Server
|
|
HOST=0.0.0.0
|
|
PORT=8000
|