-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
59 lines (44 loc) · 2.07 KB
/
Copy path.env.example
File metadata and controls
59 lines (44 loc) · 2.07 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
# LLM provider: 'openrouter' (default) or 'copilot'
MODEL_PROVIDER=openrouter
# Raw model string passed to the provider
# openrouter examples: anthropic/claude-opus-4.6, google/gemini-3-flash-preview, x-ai/grok-4.1-fast
# copilot examples: gpt-4o, gpt-4o-mini, claude-3.5-sonnet, o3-mini
MODEL=anthropic/claude-opus-4.6
# Vision model for screenshot analysis (must support image input)
# Default: google/gemini-2.5-flash-image
VISION_MODEL=
OPENROUTER_API_KEY=your_openrouter_api_key_here
# GitHub (required for MODEL_PROVIDER=copilot — run: ww copilot auth)
GITHUB_TOKEN=your_github_token_here
# GitHub PAT Token (for ww github commands)
GITHUB_PAT_TOKEN=
# Proxy (used by search modules; defaults to 127.0.0.1:7890 if unset)
HTTP_PROXY=http://127.0.0.1:7890
HTTPS_PROXY=http://127.0.0.1:7890
# Base path for note/log output directories (notes/, logs/)
# Default (empty or ".") means current working directory
BASE_PATH=
# SQLite database path for command history (ww db stats)
# Default: BASE_PATH/ww.db (or project root if BASE_PATH is unset)
DB_PATH=
# Screenshot output directory (used by ww image screenshot / screenshot-linux)
# Default (empty or ".") means current working directory (assets/screenshots on Linux)
SCREENSHOT_DIR=
# Open note in browser after creation (default: true; set to false to skip)
NOTE_BROWSER_OPEN=true
# Skip "Press Enter to continue" prompt (set to 0 to skip)
NOTE_ENTER_CONFIRM=1
# Browser app to open notes in (macOS only; e.g. Vivaldi, Google Chrome, Safari)
# Empty or unset uses the system default browser
NOTE_BROWSER=
# Java
JAVA_TOOL_OPTIONS=
# Default origin for 'ww maps office' (lat,lng — your home or common starting point)
# If unset, 'ww maps office' requires a lat,lng argument
OFFICE_LAT_LNG=22.838889,114.498969
# Default origin for 'ww maps home' (lat,lng — your current location)
# If unset, 'ww maps home' requires a lat,lng argument
HOME_LAT_LNG=22.838889,114.498969
# Appearance: webcam brightness threshold (0-255) for 'ww appearance smart-auto'
# Below threshold -> dark mode, above -> light mode. Default: 80
APPEARANCE_THRESHOLD=80