Skip to content

Latest commit

 

History

History
executable file
·
26 lines (22 loc) · 662 Bytes

README.md

File metadata and controls

executable file
·
26 lines (22 loc) · 662 Bytes

Restaurant-Management

This document defines the basic requirements for a restaurant management system. The website will assist in managing key operations such as menu management, table management, and order processing.

Install dependencies

After clone project, run this script to auto install all dependencies for both front-end and back-end:

npm install

How to start

Single start

  • Client (front-end) run this scipt:
npm run start:client
  • Server (back-end) run this scipt:
npm run start:server

Multiple start

  • To start both client (front-end) and server (back-end) run this script:
npm start