ToolJet/docs/versioned_docs/version-2.43.0/contributing-guide/setup/architecture.md
Aman Regu 3c9b04c8cd
[docs]: Add docs for v2.43.0 (#9768)
* add: docs for v2.43.0

* fix: broken links

* update: database editor based on feedback

* update: next

* update: querying tjdb with fk

* move available-actions below  create fk

* update: foreign key actions
2024-05-17 21:54:13 +05:30

1,007 B

id title
architecture Architecture

Introduction

ToolJet has two main components: ToolJet Server and ToolJet Client.

1. ToolJet Server

ToolJet server is a Node.js API application. Server is responsible for authentication, authorization, persisting application definitions, running queries, storing data source credentials securely and more.

Dependencies:

  • PostgreSQL - ToolJet server persists data to a postgres database.
  • Email service (SMTP/Sendgrid/Mailgun/etc) - Required to send user invitations and password reset emails.
  • PostgREST (Optional) - Standalone web server that converts PostgreSQL database into queryable RESTful APIs for Tooljet Database.

2. ToolJet Client

ToolJet client is a ReactJS application. Client is responsible for visually editing the applications, building & editing queries, rendering applications, executing events and their trigger, etc.

Requirements

  1. Node version 18.18.2
  2. npm version 9.8.1