Sha256: 75dd35ccda91ed9cd08a87ea5d9113c2c39e2348f4924fc2f6fc486f46dd61c1
Contents?: true
Size: 1.29 KB
Versions: 10
Compression:
Stored size: 1.29 KB
Contents
=============================================================================== Depending on your application's configuration some manual setup may be required: 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', port: 3000 } In production, :host should be set to the actual host of your application. * Required for all applications. * 2. Ensure you have defined root_url to *something* in your config/routes.rb. For example: root to: "home#index" * Not required for API-only Applications * 3. Ensure you have flash messages in app/views/layouts/application.html.erb. For example: <% if notice %> <div class="alert alert-success"><%= notice %></div> <% end %> <% if alert %> <div class="alert alert-danger"><%= alert %></div> <% end %> * Not required for API-only Applications * 4. You can copy Rodauth views (for customization) to your app by running: rails g rodauth:views * Not required * ===============================================================================
Version data entries
10 entries across 10 versions & 1 rubygems