Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 909 Bytes

README.md

File metadata and controls

53 lines (33 loc) · 909 Bytes

Employee-Attendance-System

Real Time Data using NestJs, ReactJs and Websockets

Live-Demo.mov

Usage

Manage employee and see real time data updates.

Development

git clone https://github.com/Mickaz89/Employee-Attendance-System.git

Client

Provide env variables (see .env.example)

  cd client
  npm install
  npm start

Server

Provide env variables (see .env.example)

Be sure to have mongo installed and running on your local machine

Create at least one User

  • POST /user
export enum Status {
  WORKING = 'working',
  VACATION = 'vacation',
  SICKNESS = 'sickness',
}

export class CreateUserDto {
  @IsString()
  name: string;

  @IsEnum(Status)
  status: Status;
}
  cd server
  npm install
  npm run start:dev