Project

rumblelog

0.0
No commit activity in last 3 years
No release in over 3 years
A dynamic site publishing system with Pages and Tags powered by fauna
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

active_support
>= 0
>= 0
 Project Readme

Rumblelog

A sample blog application backed by the Fauna cloud database.

How to deploy your own Rumbleog to Heroku

Clone either the original project or your fork of the project, the commands we show you assume you're in the root of the project directory.

Fauna

Create a Fauna account

Create a Database, name it anything at all.

At the database page in fauna, create a new class named Pages (capitalization is important). Copy the Server Key, we'll need it later.

Signup for Heroku

Sign up for Heroku and follow along with the QuickStart Guide Get the Heroku Toolbelt

Login to Heroku: heroku login

Pick a unique name for your blog: call it my-fauna-blog: heroku create my-fauna-blog

Create the heroku config vars

  • heroku config:set RUMBLELOG_ADMIN_USERNAME= is the username for creating new posts.
  • heroku config:set RUMBLELOG_ADMIN_PASSWORD= is the password for creating new posts.
  • heroku config:set RUMBLELOG_FAUNA_SECRET= is your Server Key from the fauna database page

Deploy! git push heroku master