Project

comfypress

0.0
No commit activity in last 3 years
No release in over 3 years
ComfyPress is a powerful Multisite CMS Engine for Ruby on Rails 3 applications that can plug into an existing Rails App
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 3.1.0
>= 0.3.0
>= 2.1.4
>= 3.4.0
>= 3.1.0
>= 2.2.0
>= 3.1.0
 Project Readme

ComfyPress (Rails 3 CMS Engine)

Gem Version Build Status Dependency Status Code Climate Coverage Status

ComfyPress is a powerful CMS Engine for your Rails 3 applications.

Features

Installation for Rails 4

For Rails 4 apps feel free to use 2.0.0.beta1 release.

gem 'comfypress', '~2.0.0.beta1'

Installation

Add gem definition to your Gemfile:

gem 'comfypress'

Then from the Rails project's root run:

bundle install
rails generate comfy:cms
rake db:migrate

Now take a look inside your config/routes.rb file. You'll see where routes attach for the admin area and content serving. Make sure that content serving route appears as a very last item.

ComfyPress::Routing.admin   :path => '/cms-admin'
ComfyPress::Routing.content :path => '/', :sitemap => false

When upgrading from the older version please take a look at Upgrading ComfyPress

Quick Start Guide

After finishing installation you should be able to navigate to http://yoursite/cms-admin

Default username and password is 'username' and 'password'. You probably want to change it right away. Admin credentials (among other things) can be found and changed in the cms initializer: /config/initializers/comfypress.rb

Before creating pages and populating them with content we need to create a Site. Site defines a hostname, content path and it's language.

After creating a Site, you need to make a Layout. Layout is the template of your pages; it defines some reusable content (like header and footer, for example) and places where the content goes. A very simple layout can look like this:

<html>
  <body>
    <h1>{{ cms:page:header:string }}</h1>
    {{ cms:page:content:text }}
  </body>
</html>

Once you have a layout, you may start creating pages and populating content. It's that easy.

For more information please see Wiki pages.

Sofa's Page Edit View

Help and Contact

GoogleGroups: http://groups.google.com/group/comfypress Twitter: @nayeems


ComfyPress is released under the MIT license

Copyright 2013 Nayeem Syed, Omega Interactive Ltd