From 39ba85dcf456fd174fcdcedb9b490e9ee868cf0f Mon Sep 17 00:00:00 2001 From: headlessdev Date: Tue, 15 Apr 2025 16:04:06 +0200 Subject: [PATCH] Clarify JWT_SECRET placeholder in configuration files --- README.md | 2 +- compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e675987..a526c45 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ services: ports: - "3000:3000" environment: - JWT_SECRET: RANDOM_SECRET + JWT_SECRET: RANDOM_SECRET # Replace with a secure random string DATABASE_URL: "postgresql://postgres:postgres@db:5432/postgres" depends_on: - db diff --git a/compose.yml b/compose.yml index 7475da7..7f61602 100644 --- a/compose.yml +++ b/compose.yml @@ -4,7 +4,7 @@ services: ports: - "3000:3000" environment: - JWT_SECRET: RANDOM_SECRET + JWT_SECRET: RANDOM_SECRET # Replace with a secure random string DATABASE_URL: "postgresql://postgres:postgres@db:5432/postgres" depends_on: - db