Ansuz
Ansuz is an open source Content Management System built in Ruby on Rails. It aims for a modular / plugin-based design, and should have more features out of the box than any other Rails CMS we’re aware of.
By combining the CMSes of Isshen Solutions and Isotope 11, we plan to create a best-of-breed technology suitable for production use on a myriad of sites. Ansuz is licensed via the BSD license.
Notice
For the best current installation instructions, you're best off seeing the article from the Ruby Advent Calendar 2008, here.
Quick Start
- clone from github: git clone git://github.com/knewter/ansuz.git
- create database config in config/database.yml (see config/database.yml.example if you need help)
- install gems: rake gems:install
- create databases: rake db:create:all
- run migrations: rake db:migrate
- run plugin migrations: rake db:migrate:plugins
- run tests: rake spec
- create a new user (do not use this in production): rake utils:create_admin
- create the folder at public/uploads (This is for fckeditor's resource browser / uploader)
- start server: script/server -p 3000
- goto: http://localhost:3000/admin
- login with admin/admin