Files
fizzy/config/storage.yml
T
2025-11-28 15:53:58 +01:00

12 lines
291 B
YAML

<%
require_relative "../lib/fizzy"
config_path = if Fizzy.saas?
gem_path = Gem::Specification.find_by_name("fizzy-saas").gem_dir
File.join(gem_path, "config", "storage.yml")
else
File.join(__dir__, "storage.oss.yml")
end
%>
<%= ERB.new(File.read(config_path)).result %>