- 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>
14 lines
370 B
Plaintext
14 lines
370 B
Plaintext
# Find a Gram Backend Environment Variables
|
|
|
|
# Application
|
|
DEBUG=false
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql+asyncpg://findagram:findagram_pass@localhost:5432/findagram
|
|
|
|
# JWT Secret (generate with: openssl rand -hex 32)
|
|
SECRET_KEY=your-super-secret-key-change-in-production
|
|
|
|
# CORS Origins (comma-separated)
|
|
CORS_ORIGINS=["http://localhost:3001","http://localhost:3000"]
|