Project

pacino

0.0
No commit activity in last 3 years
No release in over 3 years
Simple little blog powered by Sinatra.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 2.1.1
~> 0.4.0
~> 1.3.2
 Project Readme

Pacino

Pacino is a simple "blog" powered by Sinatra.

Installation

Simply run gem install pacino

Setup

Setting up Pacino is easy.

Create a directory you want to run Pacino from with, inside it create the following files and directories:

  • posts/
  • config.yml
  • config.ru
  • app.rb

Inside the posts/ directory, create a file named 1.yml and place the following inside it:

title: My first post
slug: my-first-post
body: |
  This is my _first_ post!
  
  Totally **AWESOME**.

Inside app.rb put:

require 'pacino'
Pacino.run

Inside config.ru put:

require './app.rb'
run Sinatra::Application

And inside config.yml put:

title: My Blog Name

And you're good to go.