Ask A Question

Notifications

You’re not receiving notifications from this thread.

Action text rails 6

Pratima Singh asked in Rails

Hi Chris,

i cannot upload the images from rich text drag and drop to s3 from dev.

my development .rb
config.active_storage.service = :amazon

my storage.yml

local:
  service: Disk
  root: <%= Rails.root.join("storage") %>

test:
  service: Disk
  root: <%= Rails.root.join("tmp/storage") %>

amazon:
  service: S3
  access_key_id: <%= Rails.application.credentials.dig(:development, :aws, :access_key_id) %>
  secret_access_key: <%= Rails.application.credentials.dig(:development, :aws, :secret_access_key) %>
  region: <%= Rails.application.credentials.dig(:development, :aws, :region) %>
  bucket: <%= Rails.application.credentials.dig(:development, :aws, :bucket) %>

model

class Question < ApplicationRecord
  has_rich_text :body

also i have the right credentials for s3.

not sure what am i missing

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 82,464+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.