Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 893 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 893 Bytes

Frontend

Frontend is written in ReactJS and gets served using nginx proxy, config can be found here

Endpoints

The available endpoints for this application are:-

ENDPOINT REQUEST TYPE DESCRIPTION
/employee-add POST employee-add endpoint collects the data from FORM for employee and sends to gateway
/employee-list GET employee-list endpoint fetches the information of all employees and shows on dashboard.
/attendance-add POST attendance-add endpoint collects the data from FORM for attendance and sends to gateway
/attendance-list GET employee-list endpoint fetches the information of all employee's attendance and shows on dashboard.

Quickstart

# For compiling code
make build
To run the code
serve -s build
make image