Skip to content

SWT9/stcTimeManagementSoftware

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stcTimeManagementSoftware

Program for time management in Java

Requirements and Installation:

MySQL Download page

Gradle Download page

Commands for creating the MySQL database:

First we have to open the MySQL shell, for for macOS use mysql -u root -p

Once we are inside MySQL Shell, we create the database:

create database swtDatabase;

Then we create the user:

create user 'manager'@'%'
identified by '0123456789';

Then we grant the user all the privileges:

grant all on swtDatabase.* to 'manager'@'%';

Command for exiting the MySQL server exit;

Commands for running the server:

Use this command inside the project folder ~/stcTimeManagementSoftware:

graddlew bootRun

Commands for using the website: localhost:8080

Open localhost:8080 in your browser

Manually create new users

Passwords encrypted by using Bcrypt Generator

All users password: `123``

Username Password Role
tomd tom123 SUPERVISOR
wilmaw wilma123 HR
martind martin123 EMPLOYEE
admin admin ADMIN
employee 123 EMPLOYEE
supervisor 123 SUPERVISOR
HR 123 HR
superHR 123 SUPERHR

HELP

Getting Started

Reference Documentation

For further reference, please consider the following sections:

Guides

The following guides illustrate how to use some features concretely:

Additional Links

These additional references should also help you:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •