Skip to content

Commit

Permalink
Closes Taskana#2148 make the readme more appealing
Browse files Browse the repository at this point in the history
  • Loading branch information
arolfes committed Apr 1, 2023
1 parent 84befcf commit 0030698
Show file tree
Hide file tree
Showing 10 changed files with 157 additions and 8 deletions.
165 changes: 157 additions & 8 deletions README.md
Expand Up @@ -8,7 +8,10 @@ TASKANA - The open source task management library
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/pro.taskana/taskana-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/pro.taskana/taskana-core)
[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)

TASKANA is a task management component open source library. It can be embedded into your application or be operated standalone if appropriate. Beside the basic task management functionalities, TASKANA adds workbaskets and classifications to control and monitor a large amount of tasks within a larger organization.
TASKANA is a task management component open source library. It can be embedded into your application
or be operated standalone if appropriate. Beside the basic task management functionalities,
TASKANA adds workbaskets and classifications to control and monitor a large amount of tasks within
a larger organization.

* Web Site: http://taskana.pro/
* Demo Environment: https://taskana.mybluemix.net/taskana
Expand All @@ -17,28 +20,174 @@ TASKANA is a task management component open source library. It can be embedded i
* Contribution Guildelines: https://taskana.atlassian.net/wiki/spaces/TAS/pages/274202625/Contribution+Guide
* License: Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0

Components
----------
# Table of Contents

*[Overview](#Overview)
* [Tasks](#tasks)
* [Workbasket](#workbasket)
* [Classification](#classification)
* [Routing](#routing)
* [Prioritization](#prioritization)
* [Components](#components)
* [TASKANA Lib](#taskana-lib)
* [TASKANA REST API](#taskana-rest-api)
* [TASKANA workplace](#taskana-workplace)
* [TASKANA admin](#taskana-admin)
* [TASKANA monitor](#taskana-monitor)
* 🚀 [Getting Started](#getting-started)
* [Requirements](#requirements)
* [Wrapper Application](#wrapper-application)
* [Customize Behaviour](#customize-behaviour)
* 📨 [Contact](#contact)


# ✨Overview

## Tasks

Tasks are the main entity of Taskana. Each task has its describing attributes like priority and due
date.

Furthermore each task has a state.

And a task holds a reference to the system and business object, it is associated with. This is
important since Taskana is meant to be a standalone component.

All tasks are placed in a WORKBASKET to control and direct the handling of the tasks.

![Tasklifecycle](docs/images/tasklifecycle.png)

## Workbasket

Workbaskets are the main structure to distribute the tasks to the available users. There are
personal, group/team and topic Workbaskets.

Workbaskets indicate the responsibility for a task. The concepts of Workbaskets allow to
differentiate between the permissions or the skills required to complete a tasks and the
determination who should complete the tasks. This can diverge a lot in a larger organization.

![Workbaskets](docs/images/workbaskets.png)

## Classification

Classifications allow to identify the type of a task. The task derives some major attributes from
the classification, such as the service level and the priority.

Classifications can be configured by a responsible business administrator to control the handling
of the tasks.

## Routing

TASKANA offers various routing and distribution functions to assign incoming tasks to the correct
Workbaskets, or to redistribute them between Workbaskets.

![Routing](docs/images/routing.png)

## Prioritization

The dynamic prioritization functions in TASKANA allow you to control the processing sequence of
tasks at any time. This ensures that the most important tasks are always addressed first.

![Prioritization](docs/images/prio.png)

# Componentsof databases

![Components](docs/images/components.png)

TASKANA splits up into five components:

#### TASKANA core
## TASKANA Lib
* The Java library providing the task management functions

#### TASKANA REST API
## TASKANA REST API
* REST API to allow remote access to the TASKANA system.

#### TASKANA workplace
## TASKANA workplace
* Angular based web application to work on the tasks
* Sample tasklist application you can use if appropriate

#### TASKANA admin
## TASKANA admin
* Angular based web application to configure the system
* Supports workbaskets and classifications

#### TASKANA monitor
## TASKANA monitor
* Angular based web application to monitor the status of the entire task pool
* Provides views and statistics about the conformance with defined services levels
* Shows the workload of your organization and the individual teams

# 🚀Getting Started

As TASKANA is meant to be integrated in the development environment and process of your organisation, you have to create your own small integration project as a wrapper and starting point for your customisations.

We currently provide examples how to run TASKANA as a Spring Boot Application or as a an Enterprise Application on Wildfly Application Server.

If you are only interested in how TASKANA looks and feel, you can try our Demo Environment instead.

## Requirements

Runtime Environment at least Java 11

Supported Databases:

* H2 (We test with 2.1.214*)
* Postgres (We test with 14.7*)
* DB2 (We test with 11.5.6*)
* Oracle (We test with 18c*)

_* other versions of the named databases should work also, but haven't been tested_

## Wrapper Application

To be continued...


# Customize Behaviour

TASKANA allows to customize and modify it’s behaviour through the use of dedicated Service
Provider Interfaces (SPI). Each SPI defines an interface that can be implemented by custom code.
This is a common approach for Java developers to extend their applications. You can find out more
about the background and the details in the Java documentation:
https://docs.oracle.com/javase/tutorial/sound/SPI-intro.html

In order to use an SPI within TASKANA, you must

* create a class that implements the relevant interface.
* place that class into the classpath of your application
* provide a control file with full name of the SPI
(e. g. pro.taskana.spi.task.api.CreateTaskPreprocessor) in the subdirectory META-INF/services of
the classpath. This control file must contain the fully qualified classname (including the
package) of the class that implements the relevant interface. This control file is used by the
ServiceLoader to load the custom class at runtime. The control file may contain multiple classes
has implement the interface. Each implementation should be declared in a new line.

All implementations will be used consecutively in the declaration order of the control file.

If you provide one or multiple implementations according to the description above, TASKANA will invoke the implementations at a specific point. The Javadoc of each SPI describes the conditions for the implementation to be executed.

Currently, TASKANA provides the following SPIs:

* [`pro.taskana.spi.history.api.TaskanaHistory`](https://github.com/Taskana/taskana/blob/master/lib/taskana-core/src/main/java/pro/taskana/spi/history/api/TaskanaHistory.java)
* [`pro.taskana.spi.priority.api.PriorityServiceProvider`](https://github.com/Taskana/taskana/blob/master/lib/taskana-core/src/main/java/pro/taskana/spi/priority/api/PriorityServiceProvider.java)
* [`pro.taskana.spi.routing.api.TaskRoutingProvider`](https://github.com/Taskana/taskana/blob/master/lib/taskana-core/src/main/java/pro/taskana/spi/routing/api/TaskRoutingProvider.java)
* [`pro.taskana.spi.task.api.AfterRequestChangesProvider`](https://github.com/Taskana/taskana/blob/master/lib/taskana-core/src/main/java/pro/taskana/spi/task/api/AfterRequestChangesProvider.java)
* [`pro.taskana.spi.task.api.AfterRequestReviewProvider`](https://github.com/Taskana/taskana/blob/master/lib/taskana-core/src/main/java/pro/taskana/spi/task/api/AfterRequestReviewProvider.java)
* [`pro.taskana.spi.task.api.BeforeRequestChangesProvider`](https://github.com/Taskana/taskana/blob/master/lib/taskana-core/src/main/java/pro/taskana/spi/task/api/BeforeRequestChangesProvider.java)
* [`pro.taskana.spi.task.api.BeforeRequestReviewProvider`](https://github.com/Taskana/taskana/blob/master/lib/taskana-core/src/main/java/pro/taskana/spi/task/api/BeforeRequestReviewProvider.java)
* [`pro.taskana.spi.task.api.CreateTaskPreprocessor`](https://github.com/Taskana/taskana/blob/master/lib/taskana-core/src/main/java/pro/taskana/spi/task/api/CreateTaskPreprocessor.java)
* [`pro.taskana.spi.task.api.ReviewRequiredProvider`](https://github.com/Taskana/taskana/blob/master/lib/taskana-core/src/main/java/pro/taskana/spi/task/api/ReviewRequiredProvider.java)
* [`pro.taskana.spi.user.api.RefreshUserPostprocessor`](https://github.com/Taskana/taskana/blob/master/lib/taskana-core/src/main/java/pro/taskana/spi/user/api/RefreshUserPostprocessor.java)

# 📨Contact

If you have any questions or ideas feel free to create an [issue](https://github.com/Taskana/taskana/issues) or contact us via [GitHub Discussions](https://github.com/orgs/Taskana/discussions).

We love listening to your feedback, and of course also discussing the project roadmap and possible use cases with you!

This open source project is being developed by [Novatec Consulting GmbH](https://www.novatec-gmbh.de/en/) and [envite consulting GmbH](https://envite.de/) with the support of the open source community.

---
[![Novatec Consulting GmbH](docs/images/novatec.jpeg)](https://www.novatec-gmbh.de)
---
[![envite consulting GmbH](docs/images/envite-black.png#gh-light-mode-only)](https://envite.de/)
[![envite consulting GmbH](docs/images/envite-white.png#gh-dark-mode-only)](https://envite.de/)
---
Binary file added docs/images/components.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/envite-black.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/envite-white.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/novatec.jpeg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/prio.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/prio_resize.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/routing.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/tasklifecycle.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/workbaskets.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0030698

Please sign in to comment.