- HTML
- TailwindCSS
- React.js
- Node.js
- MongoDB
- JWT Authentication
clone this repo
git clone https://github.com/Swoyam1/holidays-booking-mern-app.git
Install all dependencies
# install server side deps
cd backend
npm install
# install client side deps
cd frontend
npm install
To Run the application in development mode execute this script
cd frontend
npm run dev
Finally to start the server execute this script
cd backend
npm run dev
# backend
MONGO_URL = "Your MongoDB URL"
JWT_SECRET_KEY = "Your key"
FRONTEND_URL = "Your localhost url"
CLOUDINARY_CLOUD_NAME = "Your key"
CLOUDINARY_API_KEY = "Your key"
CLOUDINARY_API_SECRET = "Your key"
# frontend
VITE_API_BASE_URL = http://localhost:7000