Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.jitera.ai/llms.txt

Use this file to discover all available pages before exploring further.

Company settings control how your organization’s identity appears throughout the Jitera platform, including the UI, emails, and legal pages. All settings are configured via Helm values before deployment.

Company Identity

Set your organization’s name, brand, domain, and default language.
company:
  name: "Your Company Inc."
  brand_name: "YourBrand"
  domain: "@yourcompany.com"
  language: "en"
ValueRequiredDescription
company.nameYesCompany name displayed in email footers.
company.brand_nameYesBrand name displayed in the header, page title, email sender name, email subjects, and meta tags.
company.domainYesEmail domain (including the leading @). When a user registers with an email ending in this domain, Jitera treats them as internal corporate staff.
company.languageYesLanguage used for email subjects and notifications. Options: en (English), ja (Japanese).

Provide URLs to your organization’s Terms of Service and Privacy Policy. These are displayed on login and sign-up pages.
company:
  pages:
    terms_of_service_url: "https://yourcompany.com/terms"
    privacy_policy_url: "https://yourcompany.com/privacy"
ValueDescription
company.pages.terms_of_service_urlURL to your Terms of Service page.
company.pages.privacy_policy_urlURL to your Privacy Policy page.

Logos and Favicon

Logos and favicons are stored as files in the Helm chart at charts/jitera/images/. To use your own branding, replace these files before deploying the chart.
FileRecommended RatioDescription
images/logo-with-text.svg5 : 1Logo with brand text, displayed on login and sign-up pages
images/logo.svg1 : 1Icon-only logo
images/favicon.svg1 : 1Browser tab icon (SVG)
images/favicon.ico1 : 1Browser tab icon (ICO fallback)
images/logo-bitmap.pngBitmap version of the logo, used for email and social sharing
These files are mounted into both the frontend and frontend-core containers via ConfigMaps. After replacing the files, deploy (or upgrade) the Helm chart to apply the changes.

Email Branding

Email sender identity is derived from the company and mailer settings.

Sender Identity

The email “From” field is composed as:
{company.brand_name} <{mailer.default_from_email}>
For example, if company.brand_name is YourBrand and mailer.default_from_email is noreply@yourcompany.com, outgoing emails will appear as:
From: YourBrand <noreply@yourcompany.com>
The Reply-To address is set to the same value. Email footers display company information sourced from the following environment variables set in the automation service:
automation:
  env:
    JITERA_COMPANY_NAME: "Your Company Inc."
    JITERA_COMPANY_ADDRESS: "123 Main Street, Suite 100, City, Country"
    JITERA_SUPPORT_EMAIL: "support@yourcompany.com"
ValueDescriptionDefault
JITERA_COMPANY_NAMELegal company name shown in email footers.JITERA PTE. LTD.
JITERA_COMPANY_ADDRESSCompany address shown in email footers.18 Robinson Road, #20-02, Singapore 048547
JITERA_SUPPORT_EMAILSupport email address included in emails.support@jitera.com

Helm Values

Complete Helm chart configuration reference