Generators
Rails generators that install the gem, scaffold a User model, and copy view templates into the host app.
supabase-rails ships three generators under the Supabase::Generators::* namespace: supabase:install (controllers, concern, initializer, routes patch), supabase:user_model (UUID-keyed users table + upsert model), and supabase:views (copy default view templates for customisation).
supabase:install
The main setup generator. Writes 8 files (concern + 5 controllers + Current model + initializer), patches routes.rb and ApplicationController.
supabase:user_model
Opt-in shadow ActiveRecord User model + UUID-keyed migration. Lets the rest of your domain models belongs_to :user as normal.
supabase:views
Copies the gem's 8 default ERB auth templates into app/views/supabase/rails/ so you can restyle the sign-in, sign-up, password-reset, OTP, and OAuth-button views.