From ac2bf96eede35407bb2685de19a0379d16de44fb Mon Sep 17 00:00:00 2001 From: Daniel Heras Quesada Date: Wed, 7 May 2025 08:12:54 +0200 Subject: [PATCH] docs: env files clarified with a comment env files commented to clarify the importance of keeping it a secret --- front/.env | 1 + front/.env.development | 1 + front/.env.production | 1 + 3 files changed, 3 insertions(+) diff --git a/front/.env b/front/.env index 3731c18..e415a11 100644 --- a/front/.env +++ b/front/.env @@ -1,3 +1,4 @@ +# WARN: this file should never be published, therefore must be included in the .gitignore NEXT_PUBLIC_URL=http://localhost:3016 NEXT_PUBLIC_API_URL=http://localhost:3016 diff --git a/front/.env.development b/front/.env.development index 9ce34ba..8960824 100644 --- a/front/.env.development +++ b/front/.env.development @@ -1 +1,2 @@ +# WARN: this file should never be published, therefore must be included in the .gitignore NEXTAUTH_URL=http://localhost:3016 diff --git a/front/.env.production b/front/.env.production index 2e4a53a..5e971f1 100644 --- a/front/.env.production +++ b/front/.env.production @@ -1 +1,2 @@ +# WARN: this file should never be published, therefore must be included in the .gitignore NEXTAUTH_URL=http://some-name.io:3000