Project

theblog

0.0
No commit activity in last 3 years
No release in over 3 years
Yet Another WebLog engine
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.17

Runtime

 Project Readme

Theblog - Default blogging engine for most purposes

Build Status Gem Version

Usage

To install the blog engine add the following line to Gemfile

  gem 'theblog'

if you use Rails < 4.2 add foreigner as well:

  fem 'foreigner'

Then run the following commang in the console:

  rails generate theblog:install

And run rake db:migrate and then rake db:seed

To add admin account run the following rake task:

  rake app:theblog:create_account[admin,admin@theblog.com,password]

Launch your application:

  rails server

Follow /blog/admin to access the admin dashboard and /blog to get blog frontend.

Override views

To override views run the following task:

  rails generate theblog:views

Override controllers

Now you can override controllers. Just follow steps provided here