Hey, thanks for this handy library that's been helping me on generating PDFs.
This fixes compiling non-default environments (such as sandbox, staging). It was causing Code.LoadError when trying to find /app/deps/pdf_generator/config/staging.exs (in my case, I was running mix deps.compile on my staging environment)
I have checked some other Elixir libraries and I tried a similar approach of not storing a specific config file for each environment, but only a config.exs, or none.
Hey, thanks for this handy library that's been helping me on generating PDFs.
This fixes compiling non-default environments (such as sandbox, staging). It was causing
Code.LoadError
when trying to find/app/deps/pdf_generator/config/staging.exs
(in my case, I was runningmix deps.compile
on my staging environment)I have checked some other Elixir libraries and I tried a similar approach of not storing a specific config file for each environment, but only a
config.exs
, or none.