Home

Awesome

Plume

<img src="https://deiu.github.io/solid-plume/img/logo.png">

Plume is a 100% client-side blogging platform, built using Solid standards, in which data is decoupled from the application itself. This means that you can host the application on any Web server, without having to install anything -- no database, no messing around with Node.js, it has 0 dependencies! It also means that other similar applications will be able to reuse the data resulting from your posts, without having to go through a complicated API.

Plume uses Markdown to provide you with the easiest and fastest experience for writing beautiful articles.

It currently does not support dynamic configuration of data spaces, which means you will have to either run it on your own Web server, or manually upload it to your account -- you can use https://databox.me as storage. The next version will allow you to run it from Github, like all the other Solid apps we currently offer.

Configuration

Before being able to use Plume, you will have to manually set some config values. First you need to copy/rename the config-example.json file to config.json. Then you need to set the postsURL value to have it point to an existing container on a Solid-friendly server that holds your blog posts. Finally, you should also set the owners variable by adding your own WebID, in order to be able to access the editor UI and to create new posts.

Here is an example of the configuration file:

{
    "owners": ["https://example.org/profile#me"],
    "title": "Plume",
    "tagline": "Light as a feather",
    "picture": "img/logo.svg",
    "fadeText": true,
    "showSources": true,
    "cacheUnit": "days",
    "defaultPath": "posts",
    "postsURL": "https://account.databox.me/Public/blog/posts/"
}

Here is what each config parameter means: