Crates.io | dotenvsubst |
lib.rs | dotenvsubst |
version | 0.1.4 |
source | src |
created_at | 2020-05-04 10:22:53.877996 |
updated_at | 2020-05-11 06:40:19.125739 |
description | A cli tool to search and replace environment variables from .env files |
homepage | |
repository | https://github.com/gmlion/dotenvsubst |
max_upload_size | |
id | 237355 |
size | 50,904 |
dotenvsubst is a little command line utility to substitute environment variables
cargo install dotenvsubst
. You need to have Cargo installed.
dotenvsubst [ENVFILE]
Standard input is copied to standard output, with reference to environment variables of the form ${VARIABLE}
being replaced with corresponding values read from the specified ENVFILE. If no ENVFILE is specified, the program looks for a .env file in the current directory. If the environment variable is not found, the text is kept intact.
The syntax for the ENVFILE is composed of variables on new lines in the form of NAME=VALUE
.
Using a custom .env_custom ENVFILE on bash:
cat file.sh | dotenvsubst .env_custom > file_env_custom.sh
Using default .env file in Powershell:
Get-Content file.sh | dotenvsubst > file_env.sh
As an example of a specific use case, you can create specific Dockerfiles from a template and .env files
cat Dockerfile.template | dotenvsubst .env.development > Dockerfile.development
cat Dockerfile.template | dotenvsubst .env.production > Dockerfile.production