Skip to content

RedDotz20/human-resource-management-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HRMS System - IM24 Final Project

Human Resource Management System Using Node.js and MySQL

A project requirement in accordance with IM24 Subject

Getting Started

Use git clone to clone this repository:

git clone https://github.com/RedDotz20/IM24_db_HRMS_System.git

or

Click Clone or download and Download ZIP to get this repo.

Create / Select MySQL Database

CREATE DATABASE databasename;
USE databasename;

Create employees Table

CREATE TABLE employees (
  id INT NOT NULL,
  firstName VARCHAR(255) NULL,
  lastName VARCHAR(255) NULL,
  age INT NULL,
  sex VARCHAR(1) NULL,
  phoneNumber VARCHAR(255) NULL,
  PRIMARY KEY (id)
);

Create .env File

cd server
touch .env

.env file config

  • HOST=HOST
  • USER=USER
  • PASSWORD=PASSWORD
  • DATABASE=DATABASE

Install Dependencies

npm install

Run the Server

Development Build

npm run dev

Production Build

npm run build
npm run preview