Installation
Installing Lighthouse
Section titled “Installing Lighthouse”Lighthouse is currently in alpha and not yet available in the Obsidian Community Plugins directory. You can install it manually for testing.
Prerequisites
Section titled “Prerequisites”- Obsidian v1.0.0 or later
- Basic familiarity with Obsidian’s interface
Manual Installation
Section titled “Manual Installation”Option 1: Download Release (Recommended)
Section titled “Option 1: Download Release (Recommended)”- Go to the Lighthouse GitHub Releases page
- Download the latest release
.zipfile - Extract the archive
- Copy
main.js,manifest.json, andstyles.cssto your vault:YourVault/.obsidian/plugins/lighthouse/ - Restart Obsidian
- Go to Settings → Community Plugins
- Disable Restricted Mode if you haven’t already
- Find Lighthouse in your installed plugins and enable it
Option 2: Build from Source
Section titled “Option 2: Build from Source”If you want the latest development version:
-
Clone the repository:
Terminal window git clone https://github.com/benjamincassidy/lighthouse.gitcd obsidian-lighthouse -
Install dependencies:
Terminal window npm install -
Build the plugin:
Terminal window npm run build -
Copy the built files to your vault:
Terminal window # Replace /path/to/vault with your actual vault pathcp main.js manifest.json styles.css /path/to/vault/.obsidian/plugins/lighthouse/ -
Restart Obsidian and enable the plugin
Verify Installation
Section titled “Verify Installation”Once installed and enabled, you should see:
- A Lighthouse icon in the left ribbon (sidebar)
- Lighthouse commands available in the Command Palette (Cmd/Ctrl+P)
- A new Lighthouse section in Settings
Troubleshooting
Section titled “Troubleshooting”Plugin doesn’t appear after installation
Section titled “Plugin doesn’t appear after installation”- Make sure all three files (
main.js,manifest.json,styles.css) are in the correct folder - The folder name must be exactly
lighthouse(lowercase) - Try restarting Obsidian completely (quit and reopen)
- Check that you’ve disabled Restricted Mode in Settings → Community Plugins
Plugin won’t enable
Section titled “Plugin won’t enable”- Check the Obsidian console (Cmd/Ctrl+Shift+I) for error messages
- Ensure you’re running Obsidian v1.0.0 or later
- Try reinstalling the plugin files
- Report persistent issues on GitHub Issues
Next Steps
Section titled “Next Steps”Now that Lighthouse is installed, let’s create your first project! Continue to Quick Start.