Purpose

Ssh server, git server and Asciidoctor rendering facility, uploaded via git.

Roles

  • ROLE_INTERCOM_DIRECTOR

  • ROLE_INTERCOM_MANAGER

See configure roles in Crew to add the role into your Intranet

AsciidoctorJ extensions

Vidéo demonstrating Intellij integration:

TQL and TDL inlined into asciidoc

Intercom supports docs inlining reveal.js slideshows and TQL with TDL. See taack-jdbc-client-1.0-SNAPSHOT-all download page

Example 1. Table exemple
TQL and TDL (Taack Display Language)
select                              (1)
    u.rawImg,
    u.username,
    u.manager.username as manager
from User u
where u.dateCreated > '2024-01-01' and
    u.manager.username = 'admin';
--                                  (2)
table rawImg as "Pic",
      username as "Name",
      manager as "Manager"
  1. TQL (Taack Query Language), kind of HQL subset

  2. TDL (Taack Display Language), tell how to display queried data.

news table2
Figure 1. Results
Example 2. Diagram exemple
TQL and TDL (Taack Display Language)
select
    u.businessUnit,
    u.subsidiary,
    count(u.id) as counter
from User u
group by u.businessUnit;
--
barchart counter as "Counter"
news diagram
Figure 2. Results

Inlined slideshow

slide::[fn=<slideshow file name prefix>]

See home of this website.