#!/bin/bash # Generate a secure random session secret for production use echo "Generating secure SESSION_SECRET..." SECRET=$(openssl rand -hex 32) echo "" echo "Add this to your .env.production file:" echo "SESSION_SECRET=$SECRET" echo ""