Skip to content

PhucNguyenSolver/software-engineer-assg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

POS System

Our POS (point-of-sale) system helps restaurants manage their orders while simplifying the way customers order food and make payments

Installation

To setup dev environment, follow these document:

We need to run 2 apps seperately:

  • node-server: connect with MongoDB and support CRUD operations
  • frontend: client React app

to start node-server

you may want to change MongoDB config here

cd node-server
npm install
npm start

The server will be listening on localhost:8080

to start React app

cd frontend
npm install
npm start

The app will be available at localhost:3000