# Supabase Configuration (Required)
SUPABASE_URL="http://127.0.0.1:54321"
SUPABASE_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImV4cCI6MTk4MzgxMjk5Nn0.EGIM96RAZx35lJzdJsyH-qQwv8Hdp7fsn3W0YpN81IU"

# Worker Configuration
WORKER_NAME="aimq-worker"
WORKER_LOG_LEVEL="info"
WORKER_IDLE_WAIT="10.0"

# Tasks Location (Optional)
# Path to local tasks.py file or git URL for remote tasks
# Examples:
#   Local: AIMQ_TASKS="./tasks.py"
#   Git:   AIMQ_TASKS="git:mycompany/aimq-tasks@production"
#   Subdir: AIMQ_TASKS="git:mycompany/monorepo#services/worker"
# AIMQ_TASKS="./tasks.py"

# Git Configuration (Optional)
# Use SSH for git operations (requires SSH keys mounted in Docker)
# AIMQ_USE_SSH="false"

# AI Provider API Keys (Optional)
# OPENAI_API_KEY="sk-..."
# MISTRAL_API_KEY="..."

# LangChain Tracing (Optional - for debugging)
# LANGCHAIN_TRACING_V2="false"
# LANGCHAIN_ENDPOINT="https://api.smith.langchain.com"
# LANGCHAIN_API_KEY=""
# LANGCHAIN_PROJECT=""
