Publish your Obsidian vault online easily, quickly and for free directly from your Obsidian vault using Flowershow.
Here is how you can publish your Obsidian vault with Flowershow:
STEP 1: Install the Flowershow Plugin
- Open Obsidian.
- Go to Settings > Community Plugins.
- Search for "Flowershow" and click Install.
- Enable the plugin once installed.
STEP 2: Sign Up for Flowershow Cloud
- Sign up for a free account at https://cloud.flowershow.app/login.
STEP 3: Generate a Personal Access Token
- Go to your Flowershow dashboard at https://cloud.flowershow.app/tokens.
- Create a new Personal Access Token (PAT).
- Copy the token (it starts with
fs_pat_).
STEP 4: Configure the Plugin & Publish
- Go back to Obsidian and open the Flowershow plugin settings.
- Enter your Flowershow PAT token and choose a site name.
- Use "Flowershow" commands or click on the Flowershow icon in the ribbon and select the notes to publish — and that's it!
That's it! Your notes are now ready to be shared with the world! 💐
Full docs at https://flowershow.app/docs/
The Flowershow icon in your ribbon opens the Publication Status panel, which shows:
- Changed: Published files that have been edited locally.
- New: New files in your Obsidian vault that have not yet been published.
- Deleted: Files that have been deleted from your Obsidian vault but are still published on Flowershow.
- Unchanged (select to unpublish): All unchanged and published files.
- Personal Access Token: Your Flowershow PAT token (starts with
fs_pat_). Generate one at https://cloud.flowershow.app/tokens. - Site Name: The name for your Flowershow site.
- Exclude Patterns: Regex patterns to exclude files and folders from being published.
- Example:
^private/excludes the private directory.
- Example:
Both custom.css and config.json files can be edited locally and published with the plugin:
custom.css- Customize your site's stylingconfig.json- Configure site-wide settings
Flowershow: Publish single note (with embeds)- Publishes the current note with its embeds. This will publish the current note and any embedded content, but generally won't publish linked notes.Flowershow: Publish all- Publishes all files in your vault by comparing your local vault with your Flowershow site, taking into account exclude settings. Unlike single note publishing, this doesn't process embeds but rather synchronizes the entire vault content with Flowershow.
To publish Excalidraw drawings with Flowershow, configure the Excalidraw plugin to:
- Export drawings as SVG/PNG files
- Use exported files in note links
In Excalidraw plugin settings:
- Go to "Embedding Excalidraw into your Notes and Exporting"
- Go to "Export settings"
- Go to "Auto-export settings"
- Enable "Auto-export SVG" or "Auto-export PNG"
- Enable "Keep the .SVG and/or .PNG filenames in sync..." (if you want)
- Go to the top of the main section and in "Type of file to insert into the document" select "SVG" or "PNG"
This ensures your drawings will be properly published and displayed on your Flowershow site.
- Clone the repository.
- Run
npm ito install dependencies. - Run
npm run build. - Create the plugins directory in your Obsidian vault if it doesn't exist:
mkdir -p /path/to/obsidian-vault/.obsidian/plugins/flowershow- Create symlinks to the
main.js,manifest.json, andstyles.cssfiles in your Obsidian plugins folder:
ln -s /path/to/obsidian-flowershow/main.js /path/to/obsidian-vault/.obsidian/plugins/flowershow/main.js
ln -s /path/to/obsidian-flowershow/manifest.json /path/to/obsidian-vault/.obsidian/plugins/flowershow/manifest.json
ln -s /path/to/obsidian-flowershow/styles.css /path/to/obsidian-vault/.obsidian/plugins/flowershow/styles.css- Reload Obsidian, go to Settings > Community Plugins, and enable the plugin.
If you want to automatically rebuild the plugin after you make any changes to the source code, run npm run dev instead of npm run build. This will start a server that will watch for changes to the source files and rebuild the plugin automatically. However, you will still need to reload Obsidian manually each time to see the changes.
If you want true hot reloading, i.e. without needing to disable/enable the plugin:
- Install Hot-Reload plugin:
- download the .zip file from the latest release
- extract the .zip file into your Obsidian vault's
.obsidian/pluginsfolder - go to Settings > Community Plugins and enable the plugin
- Instead of creating symlinks like in step 4 above, copy/clone the plugin project directly into your Obsidian vault's
.obsidian/pluginsfolder:
mv /path/to/obsidian-flowershow /path/to/obsidian-vault/.obsidian/plugins/- Run
npm i && npm run devin the plugin folder to start the development server.
Now, whenever you make any changes to the source code, two things will happen:
- The plugin will be rebuilt automatically.
- The Hot-Reload plugin will detect that the plugin has been rebuilt and will reload it in Obsidian.
Big thanks to Ole Eskild Steensen for his obsidian-digital-garden plugin which inspired us and we got to build on.