Skip to content

karmi/marley

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Marley

Marley is minimal blog engine without admin interface written in Sinatra framework (sinatra.rubyforge.org).

It has no admin interface for writing posts. Use your favorite text editor to edit plain-text files and synchronize them to server. Marley uses plain-text files for storing articles and SQLite database for storing comments (set data location in config.yml). It comes with Rake and Capistrano tasks for installing and deploying the application, and for syncing articles from your local machine to the server.

The master branch is bare application, restafari_org branch is what runs @ www.restafari.org.

In case you like to use Marley, you should fork it and then make your own branch for your own styling, so you can git pull any future updates from the master and then merge/cherry-pick them into your branch. Marley has support for themes: see themes directory. Just duplicate the default directory and start tweaking. Obviously, do not use the restafari theme for your own blog, please.

Ingredients

  • Sinatra, Rack and Thin

  • ActiveRecord and SQLite

  • Akismet filtering (see ./vendor/akismetor.rb)

  • YAML configuration

  • RDiscount for Markdown –> HTML conversion

  • Builder for Atom feed generation

  • Rake and Capistrano tasks

Installation and dependencies

You have to install or update following Rubygems:

$ sudo gem install sinatra rack thin activerecord sqlite3-ruby rdiscount builder capistrano

Edit this configuration file:

config/config.example.yml

and save it as config/config.yml.

Install the application with this Rake task:

$ rake app:install

Load this URL in your browser:

http://localhost:4567

You’re done. SRSLY.

Deployment on server

Ensure that you have correct information in config/config.yml. Rename example deploy file to config/deploy.rb and fill in proper information for: user, repository, deploy_to, app, web, db. Then run:

  • cap deploy:setup

  • cap deploy:cold

Normal Capistrano deployment procedures apply (ie. you use cap deploy very often).

Of course, you have to ensure that there is at least some content on the server in data directory. See next section!

Synchronizing content

Marley has no administrative interface for writing articles inside some silly <textarea>. It assumes you like to write in your favorite text editor, using Markdown, previewing on the fly, and just synchronize when you’re ready to publish.

There are several ways how to do that:

  • You can be hardcore and write articles over SSH in Vim directly on the server for “just-in-time-publication” when you hit :w

  • You can be less glorious, of course, and save your articles to some folder on your disk and scp-ing said folder to the server. Or use SFTP? Cyberduck drag & drop? Aaargh, not reccommended unless you really like to see what you’re doing, in real time.

  • You can implement some sane practice and start versioning your writing with Git. (What else?) This way, you can setup remote repository on your server, just push-ing changes whenever you feel like you want to say something in public. A post-commit hook is completely neccessary in this case, of course. (It isn’t paramount of convenience having to SSH on your server to run git pull origin master in some folder.) See Capistrano task cap sync:setup:hook for setting this up.

  • When you already use Git, you can push to Github (where else?), and have Github call Marley by it’s Post-Receive Hooks (github.com/guides/post-receive-hooks). Github then calls Marley’s /sync and it will git pull changes from Github. How is this authenticated? Good question. By setting up a (possibly long and secure) token in the config file. OMG! Could be overheard in the internets! If you’re worried or prudent, do not use this. (See Capistrano task cap sync:setup:github for adding remote Github repo on the server!)

You can set-up last two options by running Capistrano task cap sync:setup. Choose whether you like to upload your local data as a Git repository to the server (and setup post-receive hook in doing so) or you want to clone data from Github repository. You should add a Post-Receive URL in your repo’s administration on Github as told by the task when it has runned.

Of course, put other ideas in the Marley Wiki (github.com/karmi/marley/wikis)

Managing spam

Marley displays spam comments on the article page, by default. You can easily mark and delete spam in admin interface, when you prepend article URL with admin – as in localhost:4567/admin/my-slashdotted-article.html. Log in with credentials set in config.yml.

In addition, there are Rake and Capistrano tasks for easily destroying spam from command line or a cron job: rake manage:spam:prune and cap manage:spam:prune. You just lose “false positives” this way. But there aren’t much of them with Akismet.

Todo

  • Authenticate Github hook by HTTP-Auth, not token

  • Enable commenters edit their comments for 15 minutes after posting (based on cookie)

  • Kick Markdown formatting into a Formatter so everyone can use whatever formatter she likes

  • Kick articles extraction logic into an Interface so everyone can use whatever data store she likes, not being plain (texter) like me

Licence

Copyright © 2008 Karel Minarik (www.karmi.cz)

Code released under the MIT license, do not reuse graphical assets and styles in the restafari_org branch, please

About

Minimalist blogging engine without textareas based on Markdown, Ruby, Sinatra and Git push hooks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published