Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/1d3o/lato-core
Lato module used to initialize custom admin panels
https://github.com/1d3o/lato-core
admin-dashboard lato rails rails-engine ruby ruby-gem ruby-on-rails
Last synced: 3 months ago
JSON representation
Lato module used to initialize custom admin panels
- Host: GitHub
- URL: https://github.com/1d3o/lato-core
- Owner: 1d3o
- License: mit
- Created: 2017-05-08T22:54:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-09T10:15:10.000Z (about 5 years ago)
- Last Synced: 2024-10-17T09:49:41.322Z (3 months ago)
- Topics: admin-dashboard, lato, rails, rails-engine, ruby, ruby-gem, ruby-on-rails
- Language: HTML
- Homepage:
- Size: 9.84 MB
- Stars: 8
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog/version_2.0
- License: MIT-LICENSE
Awesome Lists containing this project
README
# Lato Core
[![Gem Version](https://badge.fury.io/rb/lato_core.svg)](https://badge.fury.io/rb/lato_core)
Lato is a Rails engine used to develop modular admin panels. This is the module used to initialize the admin panel.
The complete documentation is inside the application panel, so you must [install](#installation) it before.![Lato dashboard screenshot](lib/screen.png)
## Ecosystem
- [Lato core](https://github.com/ideonetwork/lato-core): The core module used to initialize the panel.
- [Lato media](https://github.com/ideonetwork/lato-media): A module used to manage attachments and media files.
- [Lato blog](https://github.com/ideonetwork/lato-blog): A module to manage blog contents.## Installation
Add the lato_core gem on your Gemfile
```ruby
gem 'lato_core'
```Install the gem
```console
bundle install
```Copy the migrations
```console
rails lato_core:install:migrations
```Exec migrations
```console
bundle exec rake db:migrate
```Now you can start the server and go to the relative url */lato/core*
## Command line interface
Lato has some commands that can be used to generate files and configurations.
Inside the Lato admin panel there is a specific list of all command line commands that can be used to work with a lato project.
### Configuration
```console
rails lato:load_configs
```This command should create a list of **lato_*.yml** files inside **config/lato** containing settings and configuration of every module.
### Languages
```console
rails lato:load_languages
```This command should create a list of **lato_*_lang.yml** files inside **config/lato** containing strings that can be replaced for every lato module.
### Generators
#### Initializer
```console
rails generate lato_core:initializer
```This command should create some files that helps you to start to develop with lato.
#### Scaffold
```console
rails generate lato_core:scaffold ModelName
```