Sha256: 0a22825dbf22c4a593ac5bdfa3fc4a30c6c544c34f41a186f0007df470e8be9e
Contents?: true
Size: 1.87 KB
Versions: 5
Compression:
Stored size: 1.87 KB
Contents
[![Gem Version](https://badge.fury.io/rb/simpleadmin.svg)](https://rubygems.org/gems/simpleadmin) [![Maintainability](https://api.codeclimate.com/v1/badges/ca0015b11992514879c5/maintainability)](https://codeclimate.com/github/getsimpleadmin/simpleadmin/maintainability) # SimpleAdmin SimpleAdmin allows you to create a personalized administrative panel for your business and edit it without special knowledge in programming and works with any stack, because you are not tied to a specific programming language. This is small API library to connect your application with SimpleAdmin service. [Example Application][demo] ## Requirements - Ruby ~> 2.3; - Rails ~> 5.0; ## Installation ![simple_admin](https://getsimpleadmin.com/assets/browser-60e23472a81b90d1de2caf52e02b982cba4d1db4215626352476670deed9dd25.png) Add SimpleAdmin to your application's Gemfile: ```ruby gem 'simpleadmin' ``` And then run: ```ruby bundle install ``` **NOTE**: If you want to test your local project you'll needing to install [ngrok][ngrok] and run following command: ```ruby ./ngrok http 3000 ``` Copy your Forwadding URL (http://exampleapp.ngrok.io) and use it when you will be creating a project (column url). ## Configuration Add method `mount_simpleadmin` to your routes file to mount simpleadmin built-in routes: ```ruby # config/routes.rb Rails.application.routes.draw do mount_simpleadmin end ``` Create initializer, add your secret key and restart server ```ruby # config/initializers/simpleadmin.rb ENV['SIMPLE_ADMIN_SECRET_KEY'] = 'SECRET_KEY' ``` ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/getsimpleadmin/simpleadmin. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT). [demo]: https://getsimpleadmin.com/en/demo/admin/resources?model_klass_name=Post [ngrok]: https://ngrok.com/
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
simpleadmin-1.2.7 | README.md |
simpleadmin-1.2.6 | README.md |
simpleadmin-1.2.5 | README.md |
simpleadmin-1.2.4 | README.md |
simpleadmin-1.2.3 | README.md |