mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-14 09:27:58 -05:00
24 lines
882 B
Plaintext
24 lines
882 B
Plaintext
# Database (Required)
|
|
DATABASE_URL="postgresql://postgres:password@localhost:5432/postgres"
|
|
|
|
# PostgreSQL Port (Optional) - defaults to 5432 if not specified
|
|
# POSTGRES_PORT=5432
|
|
|
|
# Authentication (Required)
|
|
BETTER_AUTH_SECRET=your_secret_key # Use `openssl rand -hex 32` to generate, or visit https://www.better-auth.com/docs/installation
|
|
BETTER_AUTH_URL=http://localhost:3000
|
|
|
|
# NextJS (Required)
|
|
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
|
|
|
# Security (Required)
|
|
ENCRYPTION_KEY=your_encryption_key # Use `openssl rand -hex 32` to generate
|
|
|
|
# Email Provider (Optional)
|
|
# RESEND_API_KEY= # Uncomment and add your key from https://resend.com to send actual emails
|
|
# If left commented out, emails will be logged to console instead
|
|
|
|
# Local AI Models (Optional)
|
|
# OLLAMA_URL=http://localhost:11434 # URL for local Ollama server - uncomment if using local models
|
|
|