-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
74 lines (60 loc) · 4.89 KB
/
Copy path.env.example
File metadata and controls
74 lines (60 loc) · 4.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Doraemon Desktop Configuration
# Copy this file to .env and customize
# ═══════════════════════════════════════════════════════════════
# OpenClaw Gateway
# ═══════════════════════════════════════════════════════════════
# Local deployment (default)
OPENCLAW_URL=ws://127.0.0.1:18789
# Gateway auth token (must match: openclaw config get gateway.auth.token)
OPENCLAW_TOKEN=localdev
# Cloud deployment (secure WebSocket)
# OPENCLAW_URL=wss://your-openclaw-server.com:18789
# Cloud with custom path (behind reverse proxy)
# OPENCLAW_URL=wss://api.example.com/openclaw/gateway
# Dashboard: http://127.0.0.1:18789/?token=localdev
# ═══════════════════════════════════════════════════════════════
# Experience System
# ═══════════════════════════════════════════════════════════════
# Enable experience processing (soul interpretation, post generation)
EXPERIENCE_SYSTEM_ENABLED=1
# ═══════════════════════════════════════════════════════════════
# Secure Memory System (Self-Learning)
# ═══════════════════════════════════════════════════════════════
# Enable secure memory with encryption, audit logs, and auto-sanitization
MEMORY_SYSTEM_ENABLED=1
# ═══════════════════════════════════════════════════════════════
# LLM Post Generation (Haiku 3.5)
# ═══════════════════════════════════════════════════════════════
# Enable LLM-generated posts for unique, personalized content
# Uses OpenClaw gateway with claude-3-5-haiku-latest
# Cost: ~$0.75/month at 1 post/hour
# Set to 0 to use free template-based posts
LLM_POSTS_ENABLED=1
# ═══════════════════════════════════════════════════════════════
# URL Reader (Manga/Article Reading)
# ═══════════════════════════════════════════════════════════════
# Enable reading content from URLs (manga sites, news, articles)
# Supported: manhwaz.com, shinigami09.com, YouTube, generic articles
# Usage: window.api.urlRead('https://manhwaz.com/manga/solo-leveling/chapter-180')
# Set to 0 to disable URL reading
URL_READER_ENABLED=0
# ═══════════════════════════════════════════════════════════════
# Moltbook Posting Mode
# ═══════════════════════════════════════════════════════════════
# AUTONOMOUS_MODE=0 (default): Supervised - posts queue for manual approval
# AUTONOMOUS_MODE=1: Autonomous - posts go directly to Moltbook
AUTONOMOUS_MODE=0
# Moltbook API credentials (required for posting)
MOLTBOOK_API_KEY=your_api_key_here
MOLTBOOK_USERNAME=your_moltbook_name
# ═══════════════════════════════════════════════════════════════
# Cloudflare Worker Proxy
# ═══════════════════════════════════════════════════════════════
VITE_PROXY_URL=https://doraemon-proxy.doraboss.workers.dev
# ═══════════════════════════════════════════════════════════════
# Debug: WhatsApp Conversation Logging
# ═══════════════════════════════════════════════════════════════
# Log all WhatsApp inbound/outbound messages to a .txt file
# Logs saved to: ~/doraemon-whatsapp-conversations.txt
# Set to true to enable, false to disable
DEBUG_CONVERSATION=false