31 lines
1.4 KiB
Plaintext
31 lines
1.4 KiB
Plaintext
|
|
# Vera-AI Environment Configuration
|
||
|
|
# Copy this file to .env and customize for your deployment
|
||
|
|
|
||
|
|
# =============================================================================
|
||
|
|
# User/Group Configuration
|
||
|
|
# =============================================================================
|
||
|
|
# UID and GID for the container user (must match host user for volume permissions)
|
||
|
|
# Run: id -u and id -g on your host to get these values
|
||
|
|
APP_UID=1000
|
||
|
|
APP_GID=1000
|
||
|
|
|
||
|
|
# =============================================================================
|
||
|
|
# Timezone Configuration
|
||
|
|
# =============================================================================
|
||
|
|
# Timezone for the container (affects scheduler times)
|
||
|
|
# Common values: UTC, America/New_York, America/Chicago, America/Los_Angeles, Europe/London
|
||
|
|
TZ=America/Chicago
|
||
|
|
|
||
|
|
# =============================================================================
|
||
|
|
# API Keys (Optional)
|
||
|
|
# =============================================================================
|
||
|
|
# OpenRouter API key for cloud model routing
|
||
|
|
# OPENROUTER_API_KEY=your_api_key_here
|
||
|
|
|
||
|
|
# =============================================================================
|
||
|
|
# Vera-AI Configuration Paths (Optional)
|
||
|
|
# =============================================================================
|
||
|
|
# These can be overridden via environment variables
|
||
|
|
# VERA_CONFIG_DIR=/app/config
|
||
|
|
# VERA_PROMPTS_DIR=/app/prompts
|
||
|
|
# VERA_STATIC_DIR=/app/static
|