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 installQuick Start
Copy the example environment file and fill in your values, then start the development server:
cp .env.example .env.local
pnpm devOpen 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_URL | PostgreSQL connection string (required) |
| BETTER_AUTH_SECRET | 32-byte random secret for session signing (required) |
| NEXT_PUBLIC_APP_URL | Public URL of your deployment (required) |
| WEAVY_API_KEY | Weavy API key for real-time features (optional) |
Last updated: July 2026
View Resources