Project

lato_users

0.0
The project is in a healthy, maintained state
A Rails engine to manage application users on Lato projects!
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 0
>= 7.1.1
 Project Readme

Lato Users

Manage application users on Lato projects.

Installation

Add required dependencies to your application's Gemfile:

# Use lato as application panel
gem "lato"
gem "lato_users"

Install gem and run required tasks:

$ bundle
$ rails lato_users:install:application
$ rails lato_users:install:migrations
$ rails db:migrate

Mount lato users routes on the config/routes.rb file:

Rails.application.routes.draw do
  mount LatoUsers::Engine => "/lato-users"
  # ....
end

Import Lato Scss on app/assets/stylesheets/application.scss file:

@import 'lato_users/application';

// ....

Import Lato Users Js on app/javascript/application.js file:

import "lato_users/application";

// ....

Development

Clone repository, install dependencies, run migrations and start:

$ git clone https://github.com/Lato-GAM/lato_users
$ cd lato_users
$ bundle
$ rails db:migrate
$ rails db:seed
$ foreman start -f Procfile.dev

Publish

$ ruby ./bin/publish.rb

License

The gem is available as open source under the terms of the MIT License.