Simple dotenv parser for Elixir
Find a file
2022-01-28 18:59:32 +02:00
lib Add support for multiline values 2022-01-28 18:59:32 +02:00
test Add support for multiline values 2022-01-28 18:59:32 +02:00
.formatter.exs Initial commit 2021-01-20 21:57:23 +02:00
.gitignore Initial commit 2021-01-20 21:57:23 +02:00
.tool-versions Set up tool versions for Elixir 1.11 2022-01-28 18:36:54 +02:00
LICENSE Add license 2021-01-20 22:05:31 +02:00
mix.exs Set up for hex.pm publish 2021-01-21 21:32:13 +02:00
mix.lock Initial commit 2021-01-20 21:57:23 +02:00
README.md Update README version 2021-01-21 21:38:46 +02:00

DotenvParser

Simple dotenv style file parser that can parse environment data from file and load it.

See documentation: https://hexdocs.pm/dotenv_parser

Installation

The package can be installed by adding dotenv_parser to your list of dependencies in mix.exs:

def deps do
  [
    {:dotenv_parser, "~> 1.2"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/dotenv_parser.