RubySauce is a CMS based on Ruby on Rails.
RubySauce has a template management system.
1. Make sure the repository successfully clone
2. Copy config/database.yml.sample and rename it into config/database.yml
3. Change the username and the database according to your configuration
4. Run "bundle install"
5. Run "rake db:migrate"
6. Run the server with "rails s"
Note:The application use ImageMagic to resize images. So, make sure you have the ImageMagic installed on your server.
The application use Zip to unzip file with commandline. So, make sure you have the Zip installed on your server.
Email: [email protected]2. Copy config/database.yml.sample and rename it into config/database.yml
3. Change the username and the database according to your configuration
4. Run "bundle install"
5. Run "rake db:migrate"
6. Run the server with "rails s"
Note:
Password: 11111111
If the application for personal use and you don't want another user for the application, you can remove sign up URL.
Open app/models/user.rb and remove :registerable so your file look like below;
class User < ActiveRecord::Base # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable and :omniauthable devise :database_authenticatable, :confirmable, :recoverable, :rememberable, :trackable, :validatable end
More information about devise: https://github.com/plataformatec/devise
Please fit this into your configuration.
config.action_mailer.default_url_options = {:host => 'nitzaalfinas.com'} config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :address => "127.0.0.1", :port => 25, :domain => 'nitzaalfinas.com' }