From 6d6fc1386da45f74868eafe2da2f5db8fd0b8d67 Mon Sep 17 00:00:00 2001 From: MankuDada Date: Fri, 31 Oct 2025 19:45:25 +0530 Subject: [PATCH] env example updated --- backend/.env.example | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/backend/.env.example b/backend/.env.example index 518c874..e90bc6f 100644 --- a/backend/.env.example +++ b/backend/.env.example @@ -1,9 +1,14 @@ -SERVER_PORT=5001 +SERVER_PORT=YOUR_SERVER_PORT_HERE -JWT_SECRET=your_jwt_secret_here +FRONTEND_LOCAL_URL=YOUR_FRONTEND_LOCAL_URL_HERE +BACKEND_LOCAL_URL=YOUR_BACKEND_LOCAL_URL_HERE -FRONTEND_URL=http://localhost:5173 -BACKEND_URL=http://localhost:5001 +FRONTEND_SERVER_URL=YOUR_FRONTEND_SERVER_URL_HERE +BACKEND_SERVER_URL=YOUR_BACKEND_SERVER_URL_HERE -DATABASE_URL="postgresql://:@/?sslmode=require" -GEMINI_API_KEY= \ No newline at end of file +DATABASE_URL=YOUR_DATABASE_URL_HERE_____AS_____"postgresql://:@/?sslmode=require" + +JWT_SECRET=YOUR_JWT_SECRET_HERE + +GEMINI_API_KEY=YOUR_GEMINI_API_KEY_HERE +GEMINI_API_SECRET=YOUR_GEMINI_API_SECRET_HERE