Skip to content

tmsv/dump-env

 
 

Repository files navigation

A utility tool to create .env files

Build Status Coverage Python Version Docs

dump-env takes an .env.template file and some optional environmental variables to create a new .env file from these two sources. No external dependencies are used.

Why?

Why do we need such a tool? Well, this tool is very helpful when your CI is building docker (or other) images. Previously we had some complex logic of encrypting and decrypting files, importing secret keys and so on. Now we can just create secret variables for our CI, add some prefix to it, and use dump-env to make our life easier.

Quickstart

This quick demo will demonstrate the main and the only purpose of dump-env:

$ dump-env --template=.env.template --prefix='SECRET_ENV_' > .env

This command will:

  1. take .env.template
  2. parse its keys and values
  3. read and all the variables from the environment starting with SECRET_ENV_
  4. remove this prefix
  5. mix it all together, where environment variables could override ones with the same name from the template
  6. sort keys in alphabetic order
  7. dump all the keys and values into the .env file

Installation

$ pip install dump-env

Creating secret variables in some CIs

About

A utility tool to create .env files

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%