Next Tempalte

Configuration

Learn how to configure your application

Configuration

This guide explains how to configure various aspects of your application.

Environment Variables

Configure your application by setting the following environment variables:

DATABASE_URL=your_database_url
AUTH_SECRET=your_auth_secret
NEXT_PUBLIC_APP_URL=your_app_url

Application Settings

You can customize the application behavior through the config files:

// config/site.ts
export const siteConfig = {
  name: "Your App Name",
  description: "Your app description",
  // ... other settings
};

On this page