⚡
LightningRails
  • 👋Welcome
  • Access the Repo
  • Getting Started
    • 🚀Quickstart
    • 🎨Themes
    • 🖼️Customize the views
    • 🔮DaisyUI Library
    • ⚡Lightning Landing
      • Quickstart
      • Theme and branding
      • Page structure
      • Publish your landing page
  • Features setup
    • 📸Images & media
    • 🔐Admin Dashboard
    • Search Engine Optimization
    • 📧Automatic Emails
      • 🟨Postmark
      • 🔲Resend
    • 🚪Login with Devise
    • 🪄Magic Link Signup
    • 💳Stripe Payment Gateway
    • Github Signup
    • Lucide icons
    • 🤖Multi-provider AI
    • Open AI API
  • UI Components
    • 🦸Heros
    • ❔FAQs
    • 🃏cards
    • 💬Testimonials
    • 👋Call To Actions
    • 🔦Features
  • Deploying to production
    • ⬆️Heroku Deploy
    • 🛡️Security
      • 🎛️Rate Limiting
  • RESOURCES
    • 🚀Vote for new features
    • Report an issue
    • 🆘Get help on Slack
    • 🍭Design Resources
      • Maria Ba Illustrations
      • Assets Mockup Generator
      • Logo Generator
      • Tailwind Cheatsheet
      • HyperUI Tailwind Library
Powered by GitBook
On this page
  • Installation of Motor Admin
  • Setup
  • Configuration
  • Usage

Was this helpful?

  1. Features setup

Admin Dashboard

Add a fully functional admin dashboard in just 3 terminal commands.

PreviousImages & mediaNextSearch Engine Optimization

Last updated 8 months ago

Was this helpful?

Installation of Motor Admin

Motor Admin is a Ruby on Rails admin panel that can be easily integrated into your application. Follow the steps below to install it in your Rails project.

See the live demo!

We recommend installing Motor Admin after you have completed the first version of the Data Brick (Models, migrations, routes, associations, validations). This will save you manual work down the line.

Setup

All the setup is already integrated by default, you only need to create a new user and assign it as an admin.

For this, open the rails console in the terminal with rails c

> User.create(email: "youremail@gmail.com", password:"somesecurepassword", admin: true)

Configuration

Usage

Once installed, you can access the admin panel at /motor_admin by default. You can customize the interface and manage your application's data easily.

Et voila! You can now login as this user and access your brand new rails admin dashboard

After installation, you may need to configure the Motor Admin settings according to your application's requirements. Refer to the for detailed setup instructions.

🔐
http://localhost:3000/motor_admin
Motor Admin Documentation