Skip to content

devworkstecnology/webadmin

Repository files navigation

Build Status Code Climate

WebAdmin

Getting started

WebAdmin 0.1.0 works with Rails 4.1.8 onwards. You can add it to your Gemfile with:

gem 'web_admin'

Run the bundle command to install it.

After you install WebAdmin and add it to your Gemfile, add routes to WebAdmin in config/routes.rb with

mount WebAdmin::Engine, at: 'admin'

Load the WebAdmin seeds from your seeds.rb:

WebAdmin::Engine.load_seed

Then need to copy the migration with:

rake web_admin:install:migrations

Run database seeder:

rake db:seed

The default user is: [email protected]:pwd12345

Create file config/images.yml in your application with

uploaders:
  post:
    thumb_admin:
      width: 50
    thumb_site:
      width: 50
  event:
    thumb_admin:
      width: 50
    thumb_site:
      width: 50
  image:
    thumb_admin:
      width: 50
    thumb_site:
      width: 50