Welcome to the repository for our restaurant web application! This project is divided into two main folders: frontend and backend. The backend is developed using Node.js and Express, while the frontend utilizes React and CSS.
The deployed version of this application can be found at deployment_link.
The backend folder contains all the server-side code necessary for the functioning of our restaurant application. It includes routes, controllers, models, and middleware developed using Node.js and Express.
- Node.js
- Express
To run the backend locally, follow these steps:
- Navigate to the
backenddirectory. - Install dependencies by running
npm install. - Start the server using
npm start.
The frontend folder contains the user interface components of our restaurant web application. It is built using React for dynamic rendering and CSS for styling.
- React
- CSS
To run the frontend locally, follow these steps:
- Navigate to the
frontenddirectory. - Install dependencies by running
npm install. - Start the development server using
npm start.