AI-powered consultation & financing — now available.Book a session →
DocsGetting Started

Getting Started

Everything you need to run the Unfiltered platform locally and in production.

Prerequisites

  • Node.js 18.x or later
  • pnpm 8.x (recommended) or npm 10.x
  • Git 2.x
  • A Neon or compatible PostgreSQL database

Installation

git clone https://github.com/your-org/unfiltered
cd unfiltered
pnpm install

Quick Start

Copy the example environment file and fill in your values, then start the development server:

cp .env.example .env.local
pnpm dev

Open http://localhost:3000 in your browser. Hot Module Replacement is enabled — changes reflect instantly without a full reload.

Configuration

The platform reads configuration from environment variables. All required variables are documented in .env.example. Critical variables include:

DATABASE_URLPostgreSQL connection string (required)
BETTER_AUTH_SECRET32-byte random secret for session signing (required)
NEXT_PUBLIC_APP_URLPublic URL of your deployment (required)
WEAVY_API_KEYWeavy API key for real-time features (optional)

Last updated: July 2026

View Resources