Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 705 Bytes

README.md

File metadata and controls

37 lines (29 loc) · 705 Bytes

rate-hotel

Web app build in mern stack in which one can rate hotels and get the top recommended hotels

Usage

Clone the repo

git clone https://github.com/bhuwanadhikari/rate-hotel.git

Go to root folder of the project and install node_modules by this command

npm install

Traverse to folder frontend and then install

cd client
npm install

Create a file with name keys_dev.js in config folder and write required keys as in keys_prod.js

//code inside keys_dev.js
module.exports = {
   mongoURI: 'your mongo uri'
   secret: 'your own secret'
};

To run the project run this command from the root folder.

npm run dev

Boom!! You are done!!