Pagina

Pagina is a small web app that uses a Dropbox (or any other web) folder for site pages.

Pagina was designed to run on Heroku. It is very light (only hardcore dependency is rack) and uses Memcache to speed up pageloads.

The idea was to deploy simple homepages using latest cloud services fast and cheap. And in the same time, spend minimum time for implementing website design/layout.

While Dropbox takes care of ACL, revisions and hosting space, Pagina uses Markdown files to render pages.

Gems

Example config.ru

require 'bundler/setup'
Bundler.require

Pagina.dropbox_id 20301790
Pagina.dropbox_folder 'Pagina'
Pagina.layout File.expand_path '../test/layout.html', Pagina::ROOT
run Pagina::App.start

Example Gemfile

source "http://rubygems.org"
gem 'dalli'
gem 'kramdown'
gem 'pagina', :git => 'git://github.com/stas/pagina.git'

This page source