65 lines
2.4 KiB
Plaintext
65 lines
2.4 KiB
Plaintext
# =============================================================================
|
|
# 🤖 MEETME BOT CONFIGURATION
|
|
# =============================================================================
|
|
# Copy this file to .env and fill in your details below
|
|
|
|
# =============================================================================
|
|
# 🔐 YOUR ACCOUNT CREDENTIALS
|
|
# =============================================================================
|
|
|
|
# Your MeetMe email address (the one you use to log in)
|
|
MM_USERNAME=indianaholmes1@icloud.com
|
|
|
|
# Your MeetMe password
|
|
MM_PASSWORD=Halle123.
|
|
|
|
# =============================================================================
|
|
# 🤖 AI SETTINGS (Ollama)
|
|
# =============================================================================
|
|
|
|
# Ollama server address (usually http://localhost:11434)
|
|
OLLAMA_ENDPOINT=http://localhost:11434/v1/chat/completions
|
|
|
|
# AI model to use (quen3, llama2, etc.)
|
|
OLLAMA_MODEL=qwen3:latest
|
|
|
|
# =============================================================================
|
|
# 👤 BOT PERSONALITY
|
|
# =============================================================================
|
|
|
|
# Your name (how the bot introduces itself)
|
|
MY_NAME=DrJones
|
|
|
|
# Your personality/description (what the bot tells others about you)
|
|
MY_PROFILE="tech enthusiast, coffee lover"
|
|
|
|
# =============================================================================
|
|
# ⚙️ BOT BEHAVIOR
|
|
# =============================================================================
|
|
|
|
# How often to check for new messages (in seconds)
|
|
POLL_INTERVAL=90
|
|
|
|
# =============================================================================
|
|
# 🔧 DEVELOPER SETTINGS (IGNORE IF USING MEETME WEBSITE)
|
|
# =============================================================================
|
|
# ⚠️ These are ONLY for developers running their own API server
|
|
# ⚠️ If you're using the MeetMe website, leave these as they are
|
|
|
|
# Use local API instead of production? (false = use MeetMe website)
|
|
USE_LOCAL_API=false
|
|
|
|
# API version to use (v2, v1) - bot will auto-detect if not available
|
|
API_VERSION=v2
|
|
API_FALLBACK_VERSION=v1
|
|
|
|
# Retry settings for API maintenance/outages
|
|
API_RETRY_ATTEMPTS=3
|
|
API_RETRY_DELAY=60
|
|
|
|
# Local API URL (only for developers with their own server)
|
|
API_BASE_URL=http://localhost:3000/api/v1
|
|
|
|
# Local API credentials (only for developers with their own server)
|
|
API_USERNAME=local_username
|
|
API_PASSWORD=local_password |