Skip to main content
Cloud platform deployments run ParadeDB Community, which does not include WAL support. This makes them suitable for hobby, development, and staging environments. For production, we recommend ParadeDB Enterprise deployed via Kubernetes or BYOC.
Render is a cloud platform that makes it easy to deploy and manage applications. The ParadeDB Render template provides a one-click deployment that runs ParadeDB Community as a private service with persistent SSD storage.

One-Click Deploy

The fastest way to get started is to click the button below, which will fork the template repository and deploy ParadeDB to your Render account. Deploy to Render

Manual Setup

If you prefer to configure the deployment yourself:
  1. Fork the deployment-render repository
  2. In the Render dashboard, create a new Private Service and connect your forked repository
  3. Select Docker as the runtime
  4. Attach a Disk of at least 10 GB mounted at /var/lib/postgresql
  5. Set the following environment variables:
VariableDescriptionDefault
POSTGRES_USERDatabase userpostgres
POSTGRES_PASSWORDDatabase passwordAuto-generated
POSTGRES_DBDatabase nameparadedb

Connecting to ParadeDB

ParadeDB runs as a private service on Render, which means it is not exposed to the public internet. You can connect from other services on your Render account via the internal network:
psql -h paradedb -U postgres -d paradedb
To connect from your local machine, set up Render SSH and then run:
psql -U postgres paradedb