{"id":21409838,"url":"https://github.com/stackbuilders/dotenv-hs","last_synced_at":"2025-04-12T21:25:19.276Z","repository":{"id":27006478,"uuid":"30470561","full_name":"stackbuilders/dotenv-hs","owner":"stackbuilders","description":"Load environment variables from dotenv files for Haskell","archived":false,"fork":false,"pushed_at":"2025-01-10T21:28:42.000Z","size":266,"stargazers_count":65,"open_issues_count":3,"forks_count":13,"subscribers_count":24,"default_branch":"main","last_synced_at":"2025-04-04T00:09:47.212Z","etag":null,"topics":["12-factor","configuration-management","dotenv-files","environment-variables","hacktoberfest","hacktoberfest2024","haskell","twelve-factor"],"latest_commit_sha":null,"homepage":"https://hackage.haskell.org/package/dotenv","language":"Haskell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stackbuilders.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"docs/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-02-07T21:17:53.000Z","updated_at":"2024-10-31T03:08:25.000Z","dependencies_parsed_at":"2024-01-08T14:25:08.261Z","dependency_job_id":"f422abb1-aaa4-4bb3-b8c4-100beb7d5435","html_url":"https://github.com/stackbuilders/dotenv-hs","commit_stats":{"total_commits":215,"total_committers":29,"mean_commits":7.413793103448276,"dds":0.6418604651162791,"last_synced_commit":"c97f941b28adc3f1a41f908fed398478567f4845"},"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackbuilders%2Fdotenv-hs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackbuilders%2Fdotenv-hs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackbuilders%2Fdotenv-hs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackbuilders%2Fdotenv-hs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stackbuilders","download_url":"https://codeload.github.com/stackbuilders/dotenv-hs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248633266,"owners_count":21136844,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["12-factor","configuration-management","dotenv-files","environment-variables","hacktoberfest","hacktoberfest2024","haskell","twelve-factor"],"created_at":"2024-11-22T17:34:33.460Z","updated_at":"2025-04-12T21:25:19.251Z","avatar_url":"https://github.com/stackbuilders.png","language":"Haskell","readme":"[![Build Status](https://github.com/stackbuilders/dotenv-hs/actions/workflows/build.yml/badge.svg)](https://github.com/stackbuilders/dotenv-hs/actions/workflows/build.yml)[![Hackage](https://img.shields.io/hackage/v/dotenv.svg)](http://hackage.haskell.org/package/dotenv)\n\u003c!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --\u003e\n[![All Contributors](https://img.shields.io/badge/all_contributors-27-orange.svg?style=flat-square)](#contributors-)\n\u003c!-- ALL-CONTRIBUTORS-BADGE:END --\u003e\n\n# Dotenv files for Haskell\n\nIn most applications,\n[configuration should be separated from code](http://12factor.net/config). While\nit usually works well to keep configuration in the environment, there\nare cases where you may want to store configuration in a file outside\nof version control.\n\n\"Dotenv\" files have become popular for storing configuration,\nespecially in development and test environments. In\n[Ruby](https://github.com/bkeepers/dotenv),\n[Python](https://github.com/theskumar/python-dotenv) and\n[Javascript](https://www.npmjs.com/package/dotenv) there are libraries\nto facilitate loading of configuration options from configuration\nfiles. This library loads configuration to environment variables for\nprograms written in Haskell.\n\n## Install\n\nIn most cases you will just add `dotenv` to your cabal file. You can\nalso install the library and executable by invoking `stack install dotenv` or\nyou can download the dotenv binaries from our\n[releases](https://github.com/stackbuilders/dotenv-hs/releases) page.\n\n## Usage\n\nSet configuration variables in a file following the format below:\n\n```\nS3_BUCKET=YOURS3BUCKET\nSECRET_KEY=YOURSECRETKEYGOESHERE\n```\n\nThen, calling `Dotenv.load` from your Haskell program reads the above\nsettings into the environment:\n\n```haskell\nimport Configuration.Dotenv (loadFile, defaultConfig)\nloadFile defaultConfig\n```\n\nAfter calling `Dotenv.load`, you are able to read the values set in your\nenvironment using standard functions from `System.Environment` or\n`System.Environment.Blank` (`base` \u003e= 4.11.0.0), such as `getEnv`.\n\nIf your version of `base` is \u003c 4.11.0.0, then setting an environment variable value to\na blank string will remove the variable from the environment entirely.\n\n### Variable substitution\n\nIn order to use compound env vars use the following syntax within your env vars\n${your_env_var}. For instance:\n\n```\nDATABASE=postgres://${USER}@localhost/database\n```\n\nRunning it on the CLI:\n\n```\n$ dotenv \"echo $DATABASE\"\npostgres://myusername@localhost/database\n```\n\n### Command substitution\n\nIn order to use the standard output of a command in your env vars use the following syntax $(your_command). For instance:\n\n```\nDATABASE=postgres://$(whoami)@localhost/database\n```\n\nRunning it on the CLI:\n\n```\n$ dotenv \"echo $DATABASE\"\npostgres://myusername@localhost/database\n```\n\n### Surrond with quotes\n\nIf your value starts with a character that produces a parse error (e.g. `{`) . Surround your value\nwith quotes. You can also escape the quotes if they're inside your value. For example:\n\n```\nJSON_SQ='{\"a\":[1,2,3], \"b\": \"\\'asdf\\'\"}'\nJSON_DQ=\"{\\\"a\\\":[1,2,3], \\\"b\\\": \\\"'asdf'\\\"}\"\n```\n\nRun it:\n\n```\n$ dotenv \"echo $JSON_SQ\" | jq .a\n[\n  1,\n  2,\n  3\n]\n```\n\n### Configuration\n\nThe first argument to `loadFile` specifies the configuration. You can use\n`defaultConfig` which parses the `.env` file in your current directory and\ndoesn't override your envs. You can also define your own configuration with\nthe `Config` type.\n\n`False` in `configOverride` means Dotenv will respect\nalready-defined variables, and `True` means Dotenv will overwrite\nalready-defined variables.\n\nIn the `configPath` you can write a list of all the dotenv files where are\nenvs defined (e.g `[\".env\", \".tokens\", \".public_keys\"]`).\n\nIn the `configExamplePath` you can write a list of all the dotenv example files\nwhere you can specify which envs **must be defined** until running a program\n(e.g `[\".env.example\", \".tokens.example\", \".public_keys.example\"]`). If you don't\nneed this functionality you can set `configExamplePath` to an empty list.\n\nA `False` in the `configVerbose` means that Dotenv will not print any message\nwhen loading the envs. A `True` means that Dotenv will print a message when a variable is loaded.\n\nWhen `configDryRyn` is `True`, Dotenv will print out the loaded environment variables without executing the program.\n\nA `False` on `allowDuplicates` means that Dotenv will not allow duplicate keys, and instead it will throw\nan error. A `True` means that Dotenv will allow duplicate keys, and it will use the last one defined in the file (default behavior).\n\n### Advanced Dotenv File Syntax\n\nYou can add comments to your Dotenv file, on separate lines or after\nvalues. Values can be wrapped in single or double quotes. Multi-line\nvalues can be specified by wrapping the value in double-quotes, and\nusing the \"\\n\" character to represent newlines.\n\nThe [spec file](spec/Configuration/Dotenv/ParseSpec.hs) is the best\nplace to understand the nuances of Dotenv file parsing.\n\n### Command-Line Usage\n\nYou can call dotenv from the command line in order to load settings\nfrom one or more dotenv file before invoking an executable:\n\n```shell\n$ dotenv -f mydotenvfile myprogram\n```\n\nThe `-f` flag is optional, by default it looks for the `.env` file in the current working directory.\n\n```shell\n$ dotenv myprogram\n```\n\nAdditionally, you can pass arguments and flags to the program passed to\nDotenv:\n\n```shell\n$ dotenv -f mydotenvfile myprogram -- --myflag myargument\n```\n\nor:\n\n```shell\n$ dotenv -f mydotenvfile \"myprogram --myflag myargument\"\n```\n\nAlso, you can use a `--example` flag to use [dotenv-safe functionality](https://www.npmjs.com/package/dotenv-safe)\nso that you can have a list of strict envs that should be defined in the environment\nor in your dotenv files before the execution of your program. For instance:\n\n```shell\n$ cat .env.example\nDOTENV=\nFOO=\nBAR=\n\n$ cat .env\nDOTENV=123\n\n$ echo $FOO\n123\n```\n\nThis will fail:\n\n```shell\n$ dotenv -f .env --example .env.example \"myprogram --myflag myargument\"\n\u003e dotenv: The following variables are present in .env.example, but not set in the current environment, or .env: BAR\n```\n\nThis will succeed:\n\n```shell\n$ export BAR=123 # Or you can do something like: \"echo 'BAR=123' \u003e\u003e .env\"\n$ dotenv -f .env --example .env.example \"myprogram --myflag myargument\"\n```\n\nHint: The `env` program in most Unix-like environments prints out the\ncurrent environment settings. By invoking the program `env` in place\nof `myprogram` above you can see what the environment will look like\nafter evaluating multiple Dotenv files.\n\n## Contributors ✨\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n\u003c!-- prettier-ignore-start --\u003e\n\u003c!-- markdownlint-disable --\u003e\n\u003ctable\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://cristhianmotoche.github.io/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/8370088?v=4?s=100\" width=\"100px;\" alt=\"Cristhian Motoche\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eCristhian Motoche\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=CristhianMotoche\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://www.stackbuilders.com/news/author/justin-leitgeb\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/9977?v=4?s=100\" width=\"100px;\" alt=\"Justin S. Leitgeb\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJustin S. Leitgeb\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=jsl\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://markkarpov.com/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/8165792?v=4?s=100\" width=\"100px;\" alt=\"Mark Karpov\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMark Karpov\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=mrkkrp\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://juancarlos.io/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/2164411?v=4?s=100\" width=\"100px;\" alt=\"Juan Paucar\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJuan Paucar\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=juanpaucar\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/jpvillaisaza\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/584947?v=4?s=100\" width=\"100px;\" alt=\"Juan Pedro Villa Isaza\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJuan Pedro Villa Isaza\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=jpvillaisaza\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://fujimuradaisuke.com/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/134072?v=4?s=100\" width=\"100px;\" alt=\"Daisuke Fujimura\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDaisuke Fujimura\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=fujimura\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/cptrodolfox\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/20303685?v=4?s=100\" width=\"100px;\" alt=\"William R. Arellano\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eWilliam R. Arellano\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=cptrodolfox\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://dbalseiro.github.io/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/2053849?v=4?s=100\" width=\"100px;\" alt=\"Diego Balseiro\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDiego Balseiro\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=dbalseiro\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/fefi95\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/12057338?v=4?s=100\" width=\"100px;\" alt=\"Stefani Castellanos\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eStefani Castellanos\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=fefi95\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://wikipedia.org/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/2220440?v=4?s=100\" width=\"100px;\" alt=\"Götz\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eGötz\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=goetzc\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://oleg.fi/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/51087?v=4?s=100\" width=\"100px;\" alt=\"Oleg Grenrus\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eOleg Grenrus\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=phadej\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/sestrella\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/2049686?v=4?s=100\" width=\"100px;\" alt=\"Sebastián Estrella\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eSebastián Estrella\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=sestrella\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://git.sr.ht/~habibalamin\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/1415293?v=4?s=100\" width=\"100px;\" alt=\"Habib Alamin\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eHabib Alamin\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=habibalamin\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/FranzGB\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/46214532?v=4?s=100\" width=\"100px;\" alt=\"Franz Guzmán\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFranz Guzmán\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=FranzGB\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://brisb.in/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/50812?v=4?s=100\" width=\"100px;\" alt=\"Pat Brisbin\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003ePat Brisbin\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=pbrisbin\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/aloussase\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/84427521?v=4?s=100\" width=\"100px;\" alt=\"Alexander Goussas\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAlexander Goussas\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=aloussase\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/alexisbcc\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/38666191?v=4?s=100\" width=\"100px;\" alt=\"Alexis Crespo\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAlexis Crespo\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=alexisbcc\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/anddriex\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/42983405?v=4?s=100\" width=\"100px;\" alt=\"Andres Perez\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAndres Perez\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=anddriex\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/ibarrae\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/22796877?v=4?s=100\" width=\"100px;\" alt=\"Esteban Ibarra\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eEsteban Ibarra\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=ibarrae\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://ferandrade.com/\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/6790161?v=4?s=100\" width=\"100px;\" alt=\"Fernanda Andrade\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFernanda Andrade\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=flandrade\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/Jagl257\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/27145248?v=4?s=100\" width=\"100px;\" alt=\"Jorge Guerra Landázuri\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJorge Guerra Landázuri\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=Jagl257\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://matsubara0507.github.io/whoami\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/10684493?v=4?s=100\" width=\"100px;\" alt=\"MATSUBARA Nobutada\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eMATSUBARA Nobutada\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=matsubara0507\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/wojtekmach\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/76071?v=4?s=100\" width=\"100px;\" alt=\"Wojtek Mach\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eWojtek Mach\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=wojtekmach\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/DanRCM\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/112514991?v=4?s=100\" width=\"100px;\" alt=\"DanRCM\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDanRCM\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=DanRCM\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/juanfcarrillo\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/78522923?v=4?s=100\" width=\"100px;\" alt=\"Juan F. Carrillo\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eJuan F. Carrillo\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=juanfcarrillo\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"https://github.com/fm7-1\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/55803899?v=4?s=100\" width=\"100px;\" alt=\"Fabricio Mera\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eFabricio Mera\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=fm7-1\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n      \u003ctd align=\"center\" valign=\"top\" width=\"14.28%\"\u003e\u003ca href=\"http://davidmazarro.com\"\u003e\u003cimg src=\"https://avatars.githubusercontent.com/u/22799724?v=4?s=100\" width=\"100px;\" alt=\"David Mazarro\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDavid Mazarro\u003c/b\u003e\u003c/sub\u003e\u003c/a\u003e\u003cbr /\u003e\u003ca href=\"https://github.com/stackbuilders/dotenv-hs/commits?author=DavidMazarro\" title=\"Code\"\u003e💻\u003c/a\u003e\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\n\u003c!-- markdownlint-restore --\u003e\n\u003c!-- prettier-ignore-end --\u003e\n\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n\nThis project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!\n\n## License\n\nMIT, see [the LICENSE file](LICENSE).\n\n## Contributing\n\nDo you want to contribute to this project? Please take a look at our [contributing guideline](/docs/CONTRIBUTING.md) to know how you can help us build it.\n\n---\n\n\u003cimg src=\"https://cdn.stackbuilders.com/media/images/Sb-supports.original.png\" alt=\"Stack Builders\" width=\"50%\"\u003e\u003c/img\u003e\n[Check out our libraries](https://github.com/stackbuilders/) | [Join our team](https://www.stackbuilders.com/join-us/)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstackbuilders%2Fdotenv-hs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstackbuilders%2Fdotenv-hs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstackbuilders%2Fdotenv-hs/lists"}