From e1ddcfe1b1c64a06f99bd7ebad31a244e4d54843 Mon Sep 17 00:00:00 2001 From: Marko Djordjevic Date: Fri, 20 Feb 2026 18:41:26 +0100 Subject: [PATCH] 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 --- .env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.example b/.env.example index 99935b0..8644304 100644 --- a/.env.example +++ b/.env.example @@ -13,7 +13,7 @@ INFERENCE_BATCH_TIMEOUT=120000 NEXT_PUBLIC_PREDICTIONS_ENABLED=true # 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 # Google OAuth Configuration