Sha256: 6c496041fd669381ddeb3c342a7f115905c7e58262da0b2fc9d05efde0016b79
Contents?: true
Size: 992 Bytes
Versions: 2
Compression:
Stored size: 992 Bytes
Contents
# Trestle Authentication (trestle-auth) > Authentication plugin for the Trestle admin framework <img src="https://trestle.io/images/Trestle-Auth.png" width="50%" /> ## Getting Started These instructions assume you have a working Trestle application. To integrate trestle-auth, first add it to your application's Gemfile: ```ruby gem 'trestle-auth' ``` Run `bundle install`, and then run the install generator to set up configuration options, user model and user admin resource. $ rails generate trestle:auth:install $ rake db:migrate Then create an initial admin user from the rails console: $ rails console > User.create(email: "admin@example.com", password: "password", first_name: "Admin", last_name: "User") After restarting your Rails server, any attempt to access a page within your admin will redirect you to the login page. ## License The gem is available as open source under the terms of the [LGPLv3 License](https://opensource.org/licenses/LGPL-3.0).
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
trestle-auth-0.2.1 | README.md |
trestle-auth-0.2.0 | README.md |