From 7e6dc82688e2e2daa5abe047618cbe0f48c04bb5 Mon Sep 17 00:00:00 2001 From: Min Zeya Phyo Date: Tue, 20 Jan 2026 09:20:38 +0630 Subject: [PATCH] Add Active Storage configuration Add config/storage.yml to fix Rails startup error. Co-Authored-By: Claude Opus 4.5 --- config/storage.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 config/storage.yml diff --git a/config/storage.yml b/config/storage.yml new file mode 100644 index 0000000..695f17b --- /dev/null +++ b/config/storage.yml @@ -0,0 +1,7 @@ +test: + service: Disk + root: <%= Rails.root.join("tmp/storage") %> + +local: + service: Disk + root: <%= Rails.root.join("storage") %>