You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
buildx/vendor/github.com/compose-spec/godotenv
CrazyMax a18829f837
update github.com/compose-spec/compose-go to v1.0.5
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
3 years ago
..
.gitignore update github.com/compose-spec/compose-go to v1.0.5 3 years ago
Earthfile update github.com/compose-spec/compose-go to v1.0.5 3 years ago
LICENCE update github.com/compose-spec/compose-go to v1.0.5 3 years ago
README.md update github.com/compose-spec/compose-go to v1.0.5 3 years ago
go.mod update github.com/compose-spec/compose-go to v1.0.5 3 years ago
go.sum update github.com/compose-spec/compose-go to v1.0.5 3 years ago
godotenv.go update github.com/compose-spec/compose-go to v1.0.5 3 years ago
parser.go update github.com/compose-spec/compose-go to v1.0.5 3 years ago

README.md

GoDotEnv

A Go (golang) port of the Ruby dotenv project (which loads env vars from a .env file)

From the original Library:

Storing configuration in the environment is one of the tenets of a twelve-factor app. Anything that is likely to change between deployment environmentssuch as resource handles for databases or credentials for external servicesshould be extracted from the code into environment variables.

But it is not always practical to set environment variables on development machines or continuous integration servers where multiple projects are run. Dotenv load variables from a .env file into ENV when the environment is bootstrapped.

This is a fork of joho/godotenv focussing on .env file support by the compose specification

To run linter and tests, please install Earthly and run:

earthly +all