22 lines
591 B
Plaintext
22 lines
591 B
Plaintext
# User and Group IDs
|
|
PUID=1000
|
|
PGID=100
|
|
|
|
# Timezone
|
|
TZ=America/Toronto
|
|
|
|
# Base URL - set to the base URL where Mealie will be accessed
|
|
BASE_URL=http://localhost:9925
|
|
|
|
# Database Configuration (PostgreSQL)
|
|
POSTGRES_PASSWORD=your_secure_postgres_password
|
|
|
|
# OIDC/OAuth Configuration (for Authentik or other OIDC providers)
|
|
OIDC_CONFIGURATION_URL=https://authentik.yourdomain.com/application/o/mealie/.well-known/openid-configuration
|
|
OIDC_CLIENT_ID=your_oidc_client_id
|
|
OIDC_CLIENT_SECRET=your_oidc_client_secret
|
|
|
|
# OpenAI API Key (optional, for AI features)
|
|
OPENAI_API_KEY=your_openai_api_key
|
|
|