Files
cannaiq/findagram/backend/.env.example
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

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"]