Sha256: 0f015bc855c90f6ce009a309922bf87701defa3dcab1f42db6f2b8bfb0efc2b5

Contents?: true

Size: 1.57 KB

Versions: 33

Compression:

Stored size: 1.57 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
  8. Add your resources to routes.rb like this:

       namespace :api, :defaults => {:format => :json} do
           namespace :v1 do
              resources :resource
           end
       end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
faalis-1.0.0.alpha1 lib/generators/faalis/templates/README
faalis-1.0.0.alpha0 lib/generators/faalis/templates/README
faalis-0.26.3 lib/generators/faalis/templates/README
faalis-0.26.2 lib/generators/faalis/templates/README
faalis-0.26.1 lib/generators/faalis/templates/README
faalis-0.26.0 lib/generators/faalis/templates/README
faalis-0.25.1 lib/generators/faalis/templates/README
faalis-0.25.0 lib/generators/faalis/templates/README
faalis-0.24.4 lib/generators/faalis/templates/README
faalis-0.24.3 lib/generators/faalis/templates/README
faalis-0.24.2 lib/generators/faalis/templates/README
faalis-0.24.0 lib/generators/faalis/templates/README
faalis-0.23.0 lib/generators/faalis/templates/README
faalis-0.22.0 lib/generators/faalis/templates/README
faalis-0.21.1 lib/generators/faalis/templates/README
faalis-0.21.0 lib/generators/faalis/templates/README
faalis-0.20.0 lib/generators/faalis/templates/README
faalis-0.19.0 lib/generators/faalis/templates/README
faalis-0.18.1 lib/generators/faalis/templates/README
faalis-0.18.0 lib/generators/faalis/templates/README