aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/README.md
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2017-07-31 15:57:37 -0500
committerDavid Heinemeier Hansson <david@loudthinking.com>2017-07-31 15:57:37 -0500
commit90a8e0698db59d2f4ba137ea11c21783d6f9c66a (patch)
treec7e4f0683a3949808bad4daa1e4feafd31bc800c /activestorage/README.md
parent54663f55efd93c5e4f649fd1ad2833a853261507 (diff)
downloadrails-90a8e0698db59d2f4ba137ea11c21783d6f9c66a.tar.gz
rails-90a8e0698db59d2f4ba137ea11c21783d6f9c66a.tar.bz2
rails-90a8e0698db59d2f4ba137ea11c21783d6f9c66a.zip
Use config/storage.yml as part of the skeleton and loading
Diffstat (limited to 'activestorage/README.md')
-rw-r--r--activestorage/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/README.md b/activestorage/README.md
index 4a5f03233d..e8ab3b4633 100644
--- a/activestorage/README.md
+++ b/activestorage/README.md
@@ -91,7 +91,7 @@ Variation of image attachment:
2. Add `require "active_storage"` to config/application.rb, after `require "rails/all"` line.
3. Run `rails activestorage:install` to create needed directories, migrations, and configuration.
4. Configure the storage service in `config/environments/*` with `config.active_storage.service = :local`
- that references the services configured in `config/storage_services.yml`.
+ that references the services configured in `config/storage.yml`.
5. Optional: Add `gem "aws-sdk", "~> 2"` to your Gemfile if you want to use AWS S3.
6. Optional: Add `gem "google-cloud-storage", "~> 1.3"` to your Gemfile if you want to use Google Cloud Storage.
7. Optional: Add `gem "mini_magick"` to your Gemfile if you want to use variants.