feat: add Obsidian REST API endpoint configuration
- Add OBSIDIAN_API_URL for flexible endpoint configuration - Default: localhost (127.0.0.1:27123) for local Obsidian - Configurable for remote Obsidian instances (e.g., main PC) - Requires Local REST API community plugin enabled Allows agents to connect to Obsidian running on different machines within the network.
This commit is contained in:
parent
d4f4fc9ecb
commit
63c5c8f624
|
|
@ -11,8 +11,13 @@
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
# OBSIDIAN INTEGRATION
|
# OBSIDIAN INTEGRATION
|
||||||
# =============================================================================
|
# =============================================================================
|
||||||
|
# Obsidian REST API endpoint (requires Local REST API plugin)
|
||||||
|
# Default: http://127.0.0.1:27123 (if Obsidian on same machine)
|
||||||
|
# Change to your main PC IP if running Obsidian remotely
|
||||||
|
OBSIDIAN_API_URL=http://127.0.0.1:27123
|
||||||
|
|
||||||
# Obsidian API key for agent integration with your notes vault
|
# Obsidian API key for agent integration with your notes vault
|
||||||
# Get your API key from Obsidian → Settings → Community Plugins → API
|
# Get your API key from Obsidian → Settings → Community Plugins → Local REST API → API Key
|
||||||
# Enables agents to read/write project notes, knowledge base updates
|
# Enables agents to read/write project notes, knowledge base updates
|
||||||
OBSIDIAN_API_KEY=your_obsidian_api_key_here
|
OBSIDIAN_API_KEY=your_obsidian_api_key_here
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue