Skip to content

uvt/RubySauce

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RubySauce

RubySauce is a CMS based on Ruby on Rails.
RubySauce has a template management system.

Installation

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.
  • Sign in

    Email: [email protected]
    Password: 11111111

    Prevent user from sign up

    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

    Email Configuration in Production Environment

    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'
        }
        

    Best Features

  • Admin Page
  • Templates System
  • Changing URI easily
  • Test Driven Development
  • About

    CMS based on Ruby on Rails

    Resources

    Stars

    Watchers

    Forks

    Packages

    No packages published

    Languages

    • JavaScript 55.2%
    • CSS 19.6%
    • HTML 14.0%
    • Ruby 9.2%
    • PLpgSQL 2.0%