From f03b672465220591588ffd704f04623899615dd3 Mon Sep 17 00:00:00 2001 From: Julien Gautier Date: Sun, 26 Apr 2026 20:58:02 +0200 Subject: [PATCH] docs(env): add SESSION_SECRET and ALLOWED_ORIGINS to .env.example --- config/env/.env.example | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/env/.env.example b/config/env/.env.example index e0f775e..90d94c8 100644 --- a/config/env/.env.example +++ b/config/env/.env.example @@ -4,7 +4,9 @@ NODE_ENV="development" DEBUG=false SERVER_PORT=3200 SECRET="your-secret-key-here" +SESSION_SECRET="your-session-secret-here" SESSION_LIFETIME=86400 +ALLOWED_ORIGINS="http://localhost:4200" # Database - MySQL MYSQL_DBNAME="adastra_dev"