Skip to content

Getting Started

After installation and first login, you’ll land on the dashboard. This guide walks you through the main areas of the application and shows how to create your first report.

The application consists of a sidebar on the left and the main content area on the right.

Sidebar:

  • Reports — List of all reports with folders
  • Data Sets — Reusable queries
  • Data Sources — Connections to databases and APIs
  • Environments — Deployment stages (e.g. TEST, PROD)
  • Schedules — Automated report execution
  • Users & Groups — User management (admins only)
  • Audit Log — Change log (admins only)
  • License — License status and activation

At the bottom of the sidebar you’ll find the Environment Switcher, which lets you switch between Base Config and your configured environments.

Navigate to Data Sources and click New Data Source.

  1. Enter a name (e.g. “Sales DB”)
  2. Select the type (e.g. jdbc for a SQL database)
  3. Fill in the connection parameters (host, port, database, credentials)
  4. Click Test Connection to verify the connection
  5. Save the data source

Navigate to Data Sets and click New Data Set.

  1. Enter a name (e.g. “Revenue by Customer”)
  2. Select the data source you just created
  3. Write your query, e.g.:
    SELECT customer, revenue FROM v_revenue_summary
    WHERE country = {{param.country}}
  4. Click Run to test the query. Detected parameters appear as input fields above the Run button.
  5. Save the data set

Navigate to Reports and click New Report.

  1. Enter a name
  2. The report designer opens with a blank page
  3. Add panels:
    • Text panel for titles and descriptions
    • Table panel for data tables — select your data set
    • Image panel for logos or images
  4. Position and style the panels via drag & drop
  5. Define report parameters if your data sets use parameters

Click Export PDF in the report designer. The report is rendered as a PDF with live data.