An open API service indexing awesome lists of open source software.

https://github.com/unsafe-risk/dotenv

a simple and fast dotenv reader
https://github.com/unsafe-risk/dotenv

dotenv env environment-variables go golang

Last synced: over 1 year ago
JSON representation

a simple and fast dotenv reader

Awesome Lists containing this project

README

          

# dotenv

dotenv is a simple library for loading environment variables from a `.env` file into the current process.

## install

```bash
go get -u github.com/unsafe-risk/dotenv
```

## grammar

```dotenv
key=value
```

dotenv file must have a new line(`\n`) at the end of each line.
last line can skip new line.