KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
feather_cms
★ 21
Open GitHub ↗
Feather CMS is a lightweight CMS
Download README (.md)
Explore Similar Repositories
Wordpress-Plugin--Media-Upload-Skeleton
:
A bare bones skeleton of a media upload plugin, creates the tab in the Media Upload window and allows the insertion of shortcode
sentimental
:
A simple sentiment analyzer, based on clojure-opennlp
db-vk
:
DeaDBeeF vkontakte plugin
ogg.js
:
ogg vorbis decoder in JavaScript
fs
:
The fs flow record generator / network simulator.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
feather_cms
?
Download (.md)
FeatherCms ------------ # Motivation We have felt the pain of integrating static pages into a Rails application. There are plenty of gems available for this (Radiant, Locomotiv, etc.) but they are very heavy for what we need. So, we built FeatherCMS. As the name suggests, its a Do-It-Yourself, lightweight CMS - just pages, caching and nothing more! # Usage Add the gem to your Gemfile gem 'feather_cms' Now, generate the pages $ rails g feather_cms $ rake db:migrate This generates a route, the controller action and the view for each page. Start the server and use the URL http://localhost:3000/feathers/pages to go to the admin panel. This has basic HTTP authentication setup.The default username and password are feather/password and you can change this in feathers_controller.rb. To change basic authentication: config/initializers/feather_cms.rb c.authentication = {name: 'feather', password: 'password'} If you want to add devise authentication set c.authentication = :authenticate_user! or c.authentication = :authenticate_admin! # Contribute Fork away and send me pull requests! # License The MIT license