Skip to content
railsengines.com

SQLite Dashboard

Browse and query your SQLite databases from inside the app

Takes off your invoice

You would run instead $0/mo

No ratings yet
Gem
sqlite_dashboard
Repository
giovapanasiti/sqlite_dashboard
License
MIT
Stars
80
Added
August 17, 2026
SQLite Dashboard mounted at /sqlite_dashboard
SQLite Dashboard mounted at /sqlite_dashboard

About

Rails 8 put SQLite in production. This gives you somewhere to look at it.

What you get

  • Automatic discovery of the SQLite databases in config/database.yml
  • Multiple databases, switchable from the sidebar — including the Solid Queue, Solid Cache and Solid Cable databases
  • A SQL editor with CodeMirror syntax highlighting and autocomplete
  • Paginated results, exportable to CSV or JSON
  • Read-only mode by default: DROP and ALTER are blocked, and DML is configurable

Mounting it

ruby
# Gemfile
gem "sqlite_dashboard"

# config/routes.rb
authenticate :user, ->(user) { user.admin? } do
  mount SqliteDashboard::Engine => "/sqlite_dashboard"
end

Works with importmap — no build step required.

Discussion (0)

Sign in to join the discussion.

No comments yet.