Automatically creates an .env.example
which creates the same keys as your .env
file, but without the values
There are projects which make use of an .env
file. An .env
file contains environment variables which are used during runtime, such as API keys.
A typical .env
file might look like this:
OPENAI_KEY="12345"
S3_BUCKET_NAME="testbucket"
An .env
file should not be commited into a repo, since it can contain sensitive information1 (you should probably adding the .env
file into your .gitignore
). However, one needs to know which variables can be set in the .env
file and as a result, a lot of projects (such as laravel), provide an .env.example
file which is a template file. So you would copy the .env.template
, rename it to .env
and fill in the environment variables.
However, there is one issue with this approach: If one introduces a new environment variable, they need to remember to add it to the .env.example
file. Unfortunately, if they forget this, it will not be noticed, since the program is using the .env
file and not the .env.example
. This pre-commit hook tries to mitigate this problem by creating an .env.example
file automatically (based on your .env
file), so the example .env
file would become the following .env.example
:
OPENAI_KEY=""
S3_BUCKET_NAME=""
pip install clean-dotenv
Consult clean-dotenv --help
for the full set of options.
Common options:
--root_path
: Defines the root path in which to look for .env files. This is not recursive--keep value1 value2
: Defines which values shall be kept in the .env file. In this example, every variable except for value1 and value2 would be cleaned.
See pre-commit for instructions
Sample .pre-commit-config.yaml
- repo: https://github.com/hija/clean-dotenv
rev: v0.0.7
hooks:
- id: clean-dotenv
The tool looks for .env
files in all directories and creates a new, corresponding filename .env.example
which is save to commit, since it contains all the keys from your .env
file, but without its values.
As a result, you always have an up-to-date .env.example
file. This shall help to reduce forgetting updating the .env.example
files!
Since a .env
file is probably in the .gitignore
file, we cannot rely on pre-commits files
-filter. Instead, we tell pre-commit to run always. We then check for each subdirectory if an .env
file exists. If it exists, we automatically create an .env.example
file.
The biggest alternative is to not use .env
files at all2. If you want to keep using .env
files without using clean-dotenv you can use language specific tools, such as dotenv-safe for node.
- Add an option to specify the
glob
pattern to increase the performance (e.g. you could specify to look fordev/local.env
only)