Sha256: 6b59f88f341046acccb6dc6575f4cffc6e16d4829ab26fd5c4cafb9dc0fe16fb
Contents?: true
Size: 1.38 KB
Versions: 4
Compression:
Stored size: 1.38 KB
Contents
================================================== Steps to finish up installation: 1. Ensure you have defined default url options in your environments files. Here is an example of default_url_options appropriate for a development environment in config/environments/development.rb: config.action_mailer.default_url_options = { :host => 'localhost:3000' } In production, :host should be set to the actual host of your application. 2. You can override your root controller through Faalis::HomeController class. 3. Ensure you have flash messages in app/views/layouts/application.html.erb. Only if you want to change the layout For example: <p class="notice"><%= notice %></p> <p class="alert"><%= alert %></p> 4. Create a javascript manifest in 'app/assets/javascripts/dashboard/application.js' and require 'faalis/dashboard/application.js'. NOTE: You can change the default manifest name and path via 'config.dashboard_js_manifest' in 'config/initializers/faalis.rb'. 5. Make sure you take a look and configured conf/initializer/devise.rb NOTE: if you want to use devise with omniauth configure them in conf/initializer/devise.rb according to devise wiki 6. Make sure you take a look and configured conf/initializer/fast_gettext.rb 7. Make sure you take a look and configured conf/initializer/formtastic.rb
Version data entries
4 entries across 4 versions & 1 rubygems