React Application for evaluating students based on their performance.
Features:
- Add Batch
- Add and remove students
- Assign evaluations to students (Red, Yellow or Green)
- Random student picker (50% chance to get a red student, 33.3% chance yellow, 16.6% chance green.
To Do:
- Delete Batch
- Edit batch and students
- Delete and edit evaluations
- Batch
- batchNumber: string
- startDate: date
- endDate: date
- Evaluation
- date: date
- color: string
- remark: string
- student_id: objectId
- Student
- name: string
- imageUrl: string
- batch_id: objectId
- color: string
- User
- name: string
- email: string
- createdAt: date
- updatedAt: date
Make sure you have Yarn and NodeJS installed, and the backend up and running.
git clone [email protected]:floris09/evaluation-tool-react.git
cd evaluation-tool-react
yarn install
yarn start