To install Camaleon CMS you need to do the following steps:
Create your rails project
rails new my_project
Add the gem in your Gemfile
gem 'camaleon_cms'
Install the gem
bundle install
Install the CMS (This will copy some basic templates and plugins in your project)
rails generate camaleon_cms:install
Install required Gems for CMS and basic plugins
bundle install
Create database structure
rake db:migrate
Start your server
rails server # start your server
Notes for production mode:
config.serve_static_files = true
production:
secret_key_base: --------------------------
RAILS_ENV=production rake assets:precompile
Here you can find a full manual of installation for ruby on rails 4 and mysql for windows users.
https://camaleon.website/media/132/manual-de-instalacion-ruby-on-rails-con-railsinstaller.pdf
Spanish Version:
https://camaleon.website/media/132/manual-de-instalacion-ruby-on-rails-con-railsinstaller.pdf
Here you can find more information about how to deploy rails projects:
https://www.digitalocean.com/community/tutorials/how-to-deploy-a-rails-app-with-passenger-and-apache-on-ubuntu-14-04