Uncomment gem "image_processing", ">= 1.2" on Gemfile.
Run bundle install.
Run rails active_storage:install to generate a migration, it will create 3 tables: active_storage_blobs, active_storage_variant_records and active_storage_attachments.
Run rails db:migrate.
Make sure Active Storage local service is uncommented in config/storage.yml.
Tell Active Storage which service to use by setting config.active_storage.service. To use the disk service from the previous example in the development environment,make sure the following line is active on config/environments/development.rb, if not, add it:
# config/environments/development.rb
config.active_storage.service = :localAttach a file to a record. On the model add has_one_attached and the field name as in the example:
class User < ApplicationRecord
has_one_attached :avatar
endAdd a file_field to the create and update forms
<%= form.file_field :avatar %>Do not forget to update the permitted params at the controller
def user_params
params.require(:user).permit(:email_address, :password, :avatar)
endFinally, show the image at the detailed view if there is an attached image
<%= image_tag user.avatar, size: "320x240" if user.avatar.attached? %>