Skip to content

Commit

Permalink
Add config/storage.yml
Browse files Browse the repository at this point in the history
Just seeing if this will fix the error on QA:

Unable to load application: RuntimeError: Couldn't find Active Storage
configuration in /app/config/storage.yml

I found the solution here:

https://stackoverflow.com/a/66179690

Refs: #2872
  • Loading branch information
shaun-technovation committed Aug 10, 2021
1 parent ed71256 commit 571840c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions config/storage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
test:
service: Disk
root: <%= Rails.root.join("tmp/storage") %>

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

0 comments on commit 571840c

Please sign in to comment.