Sha256: 365e0c598d6683db33b77934db679457652d447cfa21e46180ba61c256b4c7d9

Contents?: true

Size: 634 Bytes

Versions: 28

Compression:

Stored size: 634 Bytes

Contents

# Installation and Setup

From within the directory containing your TrustyCMS instance:

1. Create a new Rails 4 application (i.e. `rails new [project_name]`)

2. Replace most of your Gemfile with these gems:
  - gem "trusty-cms", "~>2.0.0-beta"
  - gem "mysql2"
  - gem 'rails-observers'
  - gem 'protected_attributes'

3. Run `bundle install`

4. Run the Trusty CMS generator to get the project into shape: `rails g trusty_cms [project_name]`.
   - This will ask you if you want to replace a number of existing files (like application.rb); reply Y to all.

5. Run `bundle exec rake db:create`, then `bundle exec rake db:bootstrap`.

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
trusty-cms-2.0.18 INSTALL.md
trusty-cms-2.0.17 INSTALL.md
trusty-cms-2.0.16 INSTALL.md
trusty-cms-2.0.15 INSTALL.md
trusty-cms-2.0.14 INSTALL.md
trusty-cms-2.0.13 INSTALL.md
trusty-cms-2.0.12 INSTALL.md
trusty-cms-2.0.11 INSTALL.md