CitaRasa Web is a web-based point of sale application that sells Indonesian specialties, there are 2 user levels, namely admin and cashier. Cashier can only log in and make transactions according to buyer's order, while admins can register new cashiers or admins through the application.
This web project is a progressive web application, so you can install or add to mobile home screen. If this app run in https protocol, you can see button to install app in your devices.
- Order food
- Add, update, and delete food product (admin only)
- Add cashier or admin (admin only)
- History & statistic transaction
- Open your terminal or command prompt
- Type
git clone https://github.com/solehudin5699/POS-frontend.git
- Open the folder and type
npm install
for install dependencies - Create file .env in root directory with the following contents :
REACT_APP_API_URL ="URL_for_CitaRasa_backend"
Example :
REACT_APP_API_URL ="http://localhost:8000"
- Before run this, you must installation backend and then run backend
- Type
npm start
in terminal for running this project. - If you want to build, type
npm run build
.