Closed pmeinhardt closed 5 years ago
Make the Dotenv provider ignore lines that are commented out via #.
Dotenv
#
Example (as per the added test)
# This is a comment FOO=foo # BAR=bar
Before
This would create two key-value pairs:
"FOO"
"foo"
"# BAR"
"bar"
Now
Creates one pair: "FOO" => "foo"
Thanks for your ElixirConf talk by the way 🙂👋
Make the
Dotenv
provider ignore lines that are commented out via#
.Example (as per the added test)
Before
This would create two key-value pairs:
"FOO"
=>"foo"
"# BAR"
=>"bar"
Now
Creates one pair:
"FOO"
=>"foo"
Thanks for your ElixirConf talk by the way 🙂👋