···1313 end
14141515 def deploy(seed_type) when is_atom(seed_type) do
1616- seed_type |> String.to_existing_atom() |> deploy()
1717- end
1616+ seed_type |> String.to_existing_atom() |> deploy()
1717+ end
18181919 def deploy(seed_type) when is_seed_type?(seed_type) do
2020 case subs(seed_type) do
+3
config/config.exs
···6262config :elixir, time_zone_database: Zoneinfo.TimeZoneDatabase
6363config :zoneinfo, tzpath: "/etc/zoneinfo"
64646565+config :ex_aws, http_client: ExAws.Request.Req
6666+config :ex_aws_s3, :content_hash_algorithm, :sha256
6767+6568# Import environment specific config. This must remain at the bottom
6669# of this file so it overrides the configuration defined above.
6770import_config "#{config_env()}.exs"