Sample App|Developer Environment
Back to LoginConfiguration Error

Missing Environment Variables The application cannot start — 4 required variables are not configured.

Required Variables

4 missing

AUTH0_DOMAIN

Auth0 domain (e.g., your-tenant.auth0.com)

AUTH0_CLIENT_ID

Auth0 client ID

AUTH0_CLIENT_SECRET

Auth0 client secret

ABLY_KEY

Ably API key for real-time messaging

How to Fix

  1. 1Create a .env.local file in your project root directory
  2. 2Add the missing environment variables listed on the left
  3. 3Restart your development server

>_Quick Start

Copy the example env file and fill in your values:

cp .env.example .env.local

Then restart:

npm run dev
View Setup Documentation