python-dotenv-vault icon indicating copy to clipboard operation
python-dotenv-vault copied to clipboard

Load environment variables from encrypted .env.vault files

Results 7 python-dotenv-vault issues
Sort by recently updated
recently updated
newest added
trafficstars

The "Loading env from encrypted .env.vault file" info message is missing. Went missing here: https://github.com/dotenv-org/python-dotenv-vault/commit/f5d23bf053d9f19e01316e78616dae51f4053d8a#diff-b0a4563233b30c2906cd1576ed02f90e736dbfff74592d5b2b669a68f6d61b25L29 Add back in. Info log should be: `Loading env from encrypted .env.vault`

We should update https://pypi.org/project/python-dotenv/ to latest

The log currently looks like: ``` INFO:dotenv_vault.main:Loading env from encrypted .env.vault ``` the nodejs lib looks like this: ``` [[email protected]][INFO] Loading env from encrypted .env.vault ``` Can we beautify the...

source: https://github.com/dotenv-org/examples/tree/master/flask/heroku

Fixes the fall back behavior when no key is provided and no `.env` file is found. The previous implementation was raising an exception due to opening a file that does...

The expected behavior of the [`load_dotenv()`](https://github.com/dotenv-org/python-dotenv-vault/blob/74dbb2099871fb5a2539e3b12467366cfcb961f4/src/dotenv_vault/main.py#L29-L75) is to fall back to the behavior of the `python-dotenv` library, if the `DOTENV_KEY` environment variable is not set, as suggested in the function...