Open
Description
Firstly, thank you so much for this amazing resource!
Onto the issue. When I insert this code:
phoenix-ecto-encryption-example/config/config.exs
Lines 30 to 42 in 6d79f25
and have (double/single) quotes around the values in the .env
file, the environment variables are loaded with the quotes.
For example, in the .env
file:
export SOME_ENV_VAR="randomString"
results in:
iex(3)> System.get_env("SOME_ENV_VAR")
"\"randomString\""
I'm not entirely sure why there's code to load the environment variables like this. Why not just do the standard source .env
?