steveturner / rotabuilder

Employee Rostering Web Application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RotaBuilder - Employee Rostering

A Java web application for nurse scheduling based on OptaPlanner and Apache Isis

(option 1) Local: Build and Run with Maven

mvn clean install -DskipTests=true
cd webapp
mvn jetty:run

(option 2) Local: Build and Run with Docker

mvn clean install -DskipTests=true
docker build --rm -t bibryam/rotabuilder .
docker run -p 8080:8080 bibryam/rotabuilder

(option 3) OpenShift Online: Deploy existing Docker image to OpenShift

Create an OpenShift Online account. Notice, even the free tier account is enough to try out the application. Install OpenShift client locally (oc) and login to OpenShift. The following commands will run the latest Rotabuilder Docker image and expose its URL to outside world.

oc new-project rotabuilder
oc new-app bibryam/rotabuilder:latest -e CATALINA_OPTS="-Xmx300m"
oc expose service rotabuilder

The process takes some time as it has to download the Docker images and there are not much free resources on a free tier account. Notice also we limit Tomcat heap size in order to run in a Docker container with 512MB memory. After few minutes, you should be able to access your Rotabuilder instance.

Login

http://localhost:8080/

test:test - no tenancies
user:user - default demo user
admin:admin - admin user

Live Demo on Red Hat OpenShift

See live demo running at http://rotabuilder.com

Screenshot

project view

Application Features

  • Manage employees
  • Manage skills
  • Manage days on/off requests
  • Manage shift on/off requests
  • Manage contracts
  • Manage shifts
  • Create automatic employee-shift assignments

About

Employee Rostering Web Application

License:MIT License


Languages

Language:Java 94.8%Language:HTML 4.9%Language:CSS 0.3%Language:JavaScript 0.0%