Back|Knowledge Base PortalLive Preview
Docs
Ctrl+K
Categories
On this page
DocsGetting StartedIntegration

Getting Started with Integration

Last updated: July 14, 2026 · 5 min read

Introduction

This guide walks you through the initial setup and configuration of the integration. Follow these steps to get your project up and running in minutes.

Prerequisites

Before you begin, ensure you have the following installed on your machine:

  • Node.js 18+ and npm or yarn
  • A PostgreSQL database (local or hosted)
  • Git for version control

Installation

Clone the repository and install dependencies:

$ git clone https://github.com/example/project.git
$ cd project
$ npm install

Configuration

Create a .env.local file in the root directory:

DATABASE_URL="postgresql://localhost:5432/mydb"
API_KEY="your-api-key-here"
NEXT_PUBLIC_APP_URL="http://localhost:3000"

First Steps

Run the development server and navigate to the application:

$ npm run dev
Ready on http://localhost:3000