Skip to main content

Overview

Use the ToolJet-hosted database to build apps faster, and manage your data with ease. ToolJet database require no setup and gives you a powerful user interface for managing your data.

ToolJet database

Enabling the ToolJet Database for your instance​

PostgREST Server​

PostgREST is a standalone web server that turns your PostgreSQL database directly into queryable RESTful APIs which is utilized for Tooljet Database. This server only communicates with the ToolJet server and therefore does not need to be publicly exposed.

tip

If you have openssl installed, you can run the command openssl rand -hex 32 to generate the value for PGRST_JWT_SECRET.

If this parameter is not specified, PostgREST will refuse authentication requests.

PGRST_HOST=localhost:3001
PGRST_LOG_LEVEL=info
PGRST_DB_PRE_CONFIG=postgrest.pre_config
PGRST_SERVER_PORT=3001
PGRST_DB_URI=
PGRST_JWT_SECRET=

The PGRST_DB_URI variable is required for PostgREST, which exposes the database as a REST API. This must be explicitly set for proper functionality.

Format:​

PGRST_DB_URI=postgres://TOOLJET_DB_USER:TOOLJET_DB_PASS@TOOLJET_DB_HOST:5432/TOOLJET_DB
Variable
Description
TOOLJET_DBDefault value is tooljet_db
TOOLJET_DB_HOSTdatabase host
TOOLJET_DB_USERdatabase username
TOOLJET_DB_PASSdatabase password
TOOLJET_DB_PORTdatabase port
PGRST_JWT_SECRETJWT token client provided for authentication
PGRST_HOSTpostgrest database host
TOOLJET_DB_BULK_UPLOAD_MAX_ROWSMaximum rows allowed to bulk upload. Default value is 1000
TOOLJET_DB_BULK_UPLOAD_MAX_CSV_FILE_SIZE_MBMaximum file size of CSV for bulk upload. Default value is 5 MB

If you intend to make changes in the above configuration. Please refer PostgREST configuration docs.

tip

When this feature is enabled, the database name provided for TOOLJET_DB will be utilized to create a new database during server boot process in all of our production deploy setups. In case you want to trigger it manually, use the command npm run db:create on ToolJet server.

Features​

ToolJet database allows you to:

  • Maintain tables of data in a secure database that's only accessible within your ToolJet organization.
  • Edit, search, filter, sort, and filter data using a spreadsheet-like interface.
  • Use the SQL editor to write and execute complex SQL queries directly on your ToolJet database, providing more advanced data manipulation and retrieval capabilities.
  • Quickly build applications and write queries to interact with the ToolJet Database, just like any other datasource but without any setup.
  • Export schema from the ToolJet Database to a JSON file.
  • Uniquely identify each record in a table using Primary Keys, ensuring data integrity and enabling efficient querying and indexing.
  • Establish relationships between tables using Foreign Keys, allowing you to create associations based on the Primary Key of one table and maintain referential integrity.

Accessing ToolJet Database​

Once you log-in to your ToolJet account, from the left sidebar of the dashboard you can navigate to ToolJet Database.

The ToolJet Database is available on: ToolJet Cloud, Self-Host, and Enterprise Edition. You can manage your database and its data using the Database editor UI.

ToolJet database