Hi there!
- This is a restaurant website named 'Ristorante ConFusion'.
- You maybe wondering why I named it ConFusion, it's because I was very confused about what name should I give it :P
- Now coming to my site, it is made using React.js + HTML + CSS (Frontend), Express.js + Node.js (Backend) and MongoDB (Database).
- To start the site and see it working, follow these steps:
Step 1: Clone this repository in your desktop.
Step 2: Open command prompt/terminal and move to the cloned folder.
Step 3: Run the following commands to start the mongo server (Prerequisite - You should have MongoDB already installed on your PC):
cd mongodbmongod --dbpath=data --bind_ip 127.0.0.1Step 4: In a new terminal, again goto the cloned folder and run the following to start the Express server (Prerequisite - You should have Node.js already installed on your PC):
cd conFusionServernpm installnpm startStep 5: Again open a new terminal and inside the cloned folder run the following to start the React server:
cd conFusion-reactnpm installnpm start- Now a new browser window will open up with my site running on it. Have fun ;)
PS: Login still requires some bug fixes, will update soon.