From c2872f932ca9dd18ef69b8ba770f0efeb775c1a2 Mon Sep 17 00:00:00 2001 From: Hitesh Kumar Date: Thu, 8 Jan 2026 12:58:42 +0530 Subject: [PATCH] Revert "Added .env.example files in backend, frontend and (#86)" This reverts commit b6d12b8b5f6220998c2750c19256f4cf4c8cf28c. --- .env.example | 13 ------------- backend/.env.example | 22 ---------------------- frontend/.env.example | 3 --- 3 files changed, 38 deletions(-) delete mode 100644 .env.example delete mode 100644 backend/.env.example delete mode 100644 frontend/.env.example diff --git a/.env.example b/.env.example deleted file mode 100644 index d7359bd..0000000 --- a/.env.example +++ /dev/null @@ -1,13 +0,0 @@ -# Root level .env file - -# Backend -PORT=8000 -NODE_ENV=development -MONGODB_URI=mongodb://mongodb:27017/smartrent -JWT_SECRET=your_jwt_secret_here - -# Optional (email service) -# RESEND_API_KEY=your_resend_key_here - -# Frontend -REACT_APP_API_URL=http://localhost:8000 diff --git a/backend/.env.example b/backend/.env.example deleted file mode 100644 index 5aae800..0000000 --- a/backend/.env.example +++ /dev/null @@ -1,22 +0,0 @@ -# Server Configuration -PORT=8000 -NODE_ENV=development - -# Database -MONGODB_URI=mongodb://localhost:27017/smartrent - -# Authentication -JWT_SECRET=your_super_secret_jwt_key_change_in_production -JWT_EXPIRE=7d - -# Cloudinary Configuration -CLOUDINARY_CLOUD_NAME=your_cloud_name -CLOUDINARY_API_KEY=your_api_key -CLOUDINARY_API_SECRET=your_api_secret - -# Google OAuth (Optional) -GOOGLE_CLIENT_ID=your_google_client_id -GOOGLE_CLIENT_SECRET=your_google_client_secret - -# Email Service (Resend - Optional) -# RESEND_API_KEY=your_resend_api_key diff --git a/frontend/.env.example b/frontend/.env.example deleted file mode 100644 index 7757461..0000000 --- a/frontend/.env.example +++ /dev/null @@ -1,3 +0,0 @@ -# API Configuration -REACT_APP_API_URL=http://localhost:8000/api -REACT_APP_SOCKET_URL=http://localhost:8000