Skip to content

Latest commit

 

History

History
90 lines (59 loc) · 2.31 KB

README.md

File metadata and controls

90 lines (59 loc) · 2.31 KB

Employee-App

Server-Client application that allows the HR department to search for employees and view their details.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

  • git
  • Node.js

Installing

Clone the project

git clone https://github.com/shohamyamin/employee-app.git
cd employee-app

Install dependencies

cd client && npm install && cd ..
cd server && npm install && cd ..

Deployment

Run server: chang directory into server directory and run

npm start

Run client: chang directory into client directory and run

npm start

Go to localhost:4200 and login with:

  • username - shoham
  • password - password

Search for any one of the Employees information from this table:

ID Name Email Role
1 David [email protected] Software Developer
2 Yossi [email protected] Software Developer
3 Haim [email protected] Electrical Engineer
4 Orit [email protected] Director of R&D
5 Yuval [email protected] Software Developer
6 Roi [email protected] Software Developer

For Example: Search Software Developer

Click on one of the Employees in the table to get more information about this Employee

Built With

Additional libraries

  • bycrpt - used for hashing the passwords
  • lowdb - used for Database management

Sources of information

Authors