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