Skip to content

Instantly share code, notes, and snippets.

@SunDi3yansyah
Last active April 5, 2020 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SunDi3yansyah/23bc821e31b0a7c910711fa9d350ec32 to your computer and use it in GitHub Desktop.
Save SunDi3yansyah/23bc821e31b0a7c910711fa9d350ec32 to your computer and use it in GitHub Desktop.
Rails disable Active Storage

config/application.rb

require "active_storage/engine"

config/environments/*.rb

config.active_storage.service = :local

app/assets/javascripts/application.js

//= require activestorage
test:
service: Disk
root: <%= Rails.root.join("tmp/storage") %>
local:
service: Disk
root: <%= Rails.root.join("storage") %>
# Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
# amazon:
# service: S3
# access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
# secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
# region: us-east-1
# bucket: your_own_bucket
# Remember not to checkin your GCS keyfile to a repository
# google:
# service: GCS
# project: your_project
# credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
# bucket: your_own_bucket
# Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
# microsoft:
# service: AzureStorage
# storage_account_name: your_account_name
# storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
# container: your_container_name
# mirror:
# service: Mirror
# primary: local
# mirrors: [ amazon, google, microsoft ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment