Update .env.example with correct AUTH_SECRET generation command

Change AUTH_SECRET generation command from 'openssl rand -hex 32' to 'openssl rand -base64 32' for consistency with documentation.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marko Djordjevic 2026-02-20 18:41:26 +01:00
parent fb1411cb13
commit e1ddcfe1b1

View file

@ -13,7 +13,7 @@ INFERENCE_BATCH_TIMEOUT=120000
NEXT_PUBLIC_PREDICTIONS_ENABLED=true NEXT_PUBLIC_PREDICTIONS_ENABLED=true
# Authentication Configuration (Auth.js v5) # Authentication Configuration (Auth.js v5)
# Generate a strong random value for AUTH_SECRET: openssl rand -hex 32 # Generate a strong random value for AUTH_SECRET: openssl rand -base64 32
AUTH_SECRET=change_me_to_a_strong_random_secret AUTH_SECRET=change_me_to_a_strong_random_secret
# Google OAuth Configuration # Google OAuth Configuration