All Projects → comfy → Comfortable Mexican Sofa

comfy / Comfortable Mexican Sofa

Licence: mit
ComfortableMexicanSofa is a powerful Ruby on Rails 5.2+ CMS (Content Management System) Engine

Programming Languages

ruby
36898 projects - #4 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to Comfortable Mexican Sofa

Fae
CMS for Rails. For Reals.
Stars: ✭ 701 (-74.1%)
Mutual labels:  cms, rails-engine, rails
Sudo rails
🔒 Sudo mode for your Rails controllers
Stars: ✭ 66 (-97.56%)
Mutual labels:  rails-engine, rails
Binda
Headless CMS based on Ruby on Rails
Stars: ✭ 60 (-97.78%)
Mutual labels:  cms, rails
Comfy Blog
Blog Engine for ComfortableMexicanSofa (Rails 5.2+)
Stars: ✭ 98 (-96.38%)
Mutual labels:  rails-engine, rails
Alchemy cms
AlchemyCMS is a Rails CMS engine
Stars: ✭ 702 (-74.07%)
Mutual labels:  cms, rails-engine
Tolaria
A Rails CMS framework for making your editors happy.
Stars: ✭ 33 (-98.78%)
Mutual labels:  cms, rails
Thredded
The best Rails forums engine ever.
Stars: ✭ 1,263 (-53.34%)
Mutual labels:  rails-engine, rails
Property web builder
The ultimate Ruby on Rails engine for creating real estate websites ⛺
Stars: ✭ 414 (-84.71%)
Mutual labels:  cms, rails
Spotlight
Spotlight enables librarians, curators, and others who are responsible for digital collections to create attractive, feature-rich websites that highlight these collections.
Stars: ✭ 137 (-94.94%)
Mutual labels:  rails-engine, rails
Redis web manager
Manage your Redis instance (see keys, memory used, connected client, etc...)
Stars: ✭ 139 (-94.87%)
Mutual labels:  rails-engine, rails
Spina
Spina CMS
Stars: ✭ 1,926 (-28.85%)
Mutual labels:  cms, rails
Workflow core
[Deprecated, use flor_core instead] A Rails engine which providing essential infrastructure of workflow. It's based on Workflow Nets.
Stars: ✭ 171 (-93.68%)
Mutual labels:  rails-engine, rails
Rails email preview
Preview and edit app mailer templates in Rails.
Stars: ✭ 524 (-80.64%)
Mutual labels:  rails-engine, rails
Buttercms Rails
Rails SDK for ButterCMS (https://buttercms.com)
Stars: ✭ 35 (-98.71%)
Mutual labels:  cms, rails
Maily
📫 Rails Engine to preview emails in the browser
Stars: ✭ 502 (-81.46%)
Mutual labels:  rails-engine, rails
Tabler Rubygem
Rubygem for https://tabler.github.io
Stars: ✭ 77 (-97.16%)
Mutual labels:  rails-engine, rails
Material icons
A simple Rails wrapper for Google Material Icons
Stars: ✭ 266 (-90.17%)
Mutual labels:  rails-engine, rails
Push type
PushType is a modern, open source content management system for Ruby on Rails.
Stars: ✭ 293 (-89.18%)
Mutual labels:  cms, rails
Rails server timings
Server Timing headers for Rails apps
Stars: ✭ 112 (-95.86%)
Mutual labels:  rails-engine, rails
Flipflop
Flipflop lets you declare and manage feature flags in your Rails application.
Stars: ✭ 165 (-93.9%)
Mutual labels:  rails-engine, rails

ComfortableMexicanSofa

ComfortableMexicanSofa is a powerful Ruby on Rails 5.2+ CMS (Content Management System) Engine

Gem Version Gem Downloads Build Status Coverage Status Gitter

Features

  • Simple drop-in integration with Rails 5.2+ apps with minimal configuration
  • CMS stays away from the rest of your application
  • Powerful page templating capability using Content Tags
  • Multiple Sites from a single installation
  • Multi-Language Support (i18n) (ca, cs, da, de, en, es, fi, fr, gr, hr, it, ja, nb, nl, pl, pt-BR, ru, sv, tr, uk, zh-CN, zh-TW) and page localization.
  • CMS Seeds for initial content population
  • Revision History to revert changes
  • Extendable Admin Area built with Bootstrap 4 (responsive design). Using CodeMirror for HTML and Markdown highlighing and Redactor as the WYSIWYG editor.

Dependencies

  • File attachments are handled by ActiveStorage. Make sure that you can run appropriate migrations by running: rails active_storage:install
  • Image resizing is done with with ImageMagick, so make sure it's installed.
  • Pagination is handled by kaminari or will_paginate. Please add one of those to your Gemfile.

Installation

Add gem definition to your Gemfile:

gem "comfortable_mexican_sofa", "~> 2.0.0"

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 or it will make all other routes to be inaccessible.

comfy_route :cms_admin, path: "/admin"
comfy_route :cms, path: "/"

Quick Start Guide

After finishing installation you should be able to navigate to http://localhost:3000/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/comfortable_mexican_sofa.rb

Before creating pages and populating them with content we need to create a Site. Site defines a hostname, content path and its 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:text title }}</h1>
    {{ cms:wysiwyg content }}
  </body>
</html>

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

Documentation

For more information on how to use this CMS please refer to the Wiki. Section that might be of interest is the entry on Content Tags.

Comfy Demo App also can be used as an example of a default Rails app with CMS installed.

Add-ons

If you want to add a Blog functionality to your app take a look at ComfyBlog.

Admin Area Preview

Old Versions

CMS for Rails 5.1 doesn't have published gem, but you may use rails 5.1 branch directly.

If you want to use CMS version 1.12 on Rails 5.2 use 1.13 branch directly.

With Rails 4.2 and 5.0 use gem version 1.12.10

With Rails 3.0 use gem version 1.8.5

CHANGELOG is documented in Github releases.

Contributing

ComfortableMexicanSofa repository can be ran like a regular Rails application in development environment. It's as easy to work on as any other Rails app out there. For more detail take a look at CONTRIBUTING

Help and Contact

Gitter: https://gitter.im/comfy/comfortable-mexican-sofa

Twitter: @GroceryBagHead

Acknowledgements

Thanks to Roman Almeida for contributing OEM License for Redactor Text Editor


Copyright 2010-2019 Oleg Khabarov. Released under the MIT license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].