-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 1.08 KB
/
.env.example
File metadata and controls
28 lines (22 loc) · 1.08 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
# Obsidian Graph MCP Server Configuration
# Copy this file to .env and fill in your values
# Required: Your Voyage AI API key
# Get one at https://dashboard.voyageai.com/
VOYAGE_API_KEY=your_voyage_api_key_here
# Required: Path to your Obsidian vault
# Use absolute path on your system
# Cloud sync paths work (iCloud, Google Drive, Dropbox, OneDrive)
OBSIDIAN_VAULT_PATH=/path/to/your/obsidian/vault
# Required: Database password
# Generate a secure password:
# openssl rand -base64 36
POSTGRES_PASSWORD=your_secure_password_here
# Optional: Logging level (DEBUG, INFO, WARNING, ERROR)
LOG_LEVEL=INFO
# Optional: File watching configuration
# OBSIDIAN_WATCH_ENABLED=true # Enable/disable file watching
# OBSIDIAN_DEBOUNCE_SECONDS=30 # Wait time before re-indexing after edits
# Optional: Polling mode for cloud-synced vaults
# Auto-enabled when running in Docker or when vault is in a cloud sync folder
# OBSIDIAN_WATCH_USE_POLLING= # Leave empty for auto-detect, or set true/false
# OBSIDIAN_WATCH_POLLING_INTERVAL=30 # Seconds between directory scans (default: 30)