• Stars
    star
    190
  • Rank 203,739 (Top 5 %)
  • Language
    Shell
  • License
    MIT License
  • Created over 3 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

dotenv for shells with support for POSIX-compliant and multiple .env file syntax

shdotenv

dotenv for shells with support for POSIX-compliant and multiple .env file syntax

GitHub Workflow Status

Project Status: Almost complete. Major features have been implemented and v1.0.0 will be released in the near future.

Important Notes: Incompatible changes were made in Version 0.12.0. If a definition with the same name exists in the .env file when --overload is specified, the later definition takes precedence. Also, it has been changed to default to an error for undesirable usage. We believe this change will not affect many cases, but if you have a problem, please open an issue.

Quoting bkeepers/dotenv:

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

Why not use source or export?

It is not safe. There is no formal specification for the .env file syntax, and different languages, libraries, and tools use different syntaxes. If you load a .env file syntax that is incompatible with the POSIX shell syntax, you will get unexpected results and may even result in the execution of scripts.

shdotenv safely loads the syntax of .env files that are compatible with POSIX shell syntax. There is no possibility that the script will be executed. And also, for interoperability, .env files with other syntaxes are supported whenever possible.

The goals of this project

  1. Provide language-independent CLI utilities
  2. Provide a library that can safely load .env file from shell scripts
  3. Define POSIX shell compatible .env file syntax specification
  4. Support for .env file syntax dialects for interoperation

Requirements

shdotenv is a single file shell script with embedded awk script. It uses only the following commands which can be found anywhere.

  • POSIX shell (dash, bash, ksh, zsh, etc)
  • awk (gawk, nawk, mawk, busybox awk)

Install

Download shdotenv (shell script) from releases.

$ wget https://github.com/ko1nksm/shdotenv/releases/latest/download/shdotenv -O $HOME/bin/shdotenv
$ chmod +x $HOME/bin/shdotenv

Build your own

Build and install only

$ git clone https://github.com/ko1nksm/shdotenv.git
$ cd shdotenv
$ make build
$ make install PREFIX=$HOME

Full build

A full build requires requires shfmt, shellcheck and shellspec.

$ git clone https://github.com/ko1nksm/shdotenv.git
$ cd shdotenv
$ make MINIFY=true
$ make install PREFIX=$HOME

Note for developers: shdotenv can be run in source code without building. Please run src/shdotenv.

Usage

Usage: shdotenv [OPTION]... [--] [[COMMAND | export] [ARG]...]

  If the COMMAND is specified, it will load .env files and run the command.
  If the COMMAND is omitted, it will output the result of interpreting .env
  files. It can be safely loaded into the shell (For example, using eval).

Options:
  -d, --dialect DIALECT     Specify the .env dialect [default: posix]
                                posix, ruby, node, python,
                                php, go, rust, docker
  -f, --format FORMAT       Output in the specified format [default: sh]
                                sh, csh, fish, json, jsonl, yaml, name
  -e, --env ENV_PATH        Location of the .env file [default: .env]
                              Multiple -e options are allowed
                              If the ENV_PATH is "-", read from stdin
  -i, --ignore-environment  Ignore the current environment variables
      --overload            Overload predefined variables
      --no-allexport        Disable all variable export
                              Same as deprecated --noexport
      --no-nounset          Allow references to undefined variables
      --grep PATTERN        Output only names that match the regexp pattern
  -s, --sort                Sort variable names
  -q, --quiet               Suppress all output (useful for test .env files)
  -v, --version             Show the version and exit
  -h, --help                Show this message and exit

Usage: shdotenv export [-n | -p] [--] [NAME]...
  Exports environment variables in posix-compliant .env format.

  -n  List only environment variable names
  -p  Append "export" prefix to environment variable names

  This will be output after the .env files is loaded. If you do not want
  to load it, specify "-e /dev/null". This is similar to "export", "env"
  and "printenv" commands, but quoting correctly and exports only portable
  environment variable name that are valid as identifier for posix shell.

How to use

Use as a CLI utility

Set environment variables and execute the specified command.

shdotenv [OPTION]... <COMMAND> [ARGUMENTS]...

Test the .env file syntax

shdotenv --quiet --env .env

Use as a library

Load the .env file into the shell script. When run on the shell, it exports to the current shell.

sh, bash, ksh, zsh, etc. (POSIX-compliant shells)

eval "$(shdotenv [OPTION]...)"

You may want to abort the program when the .env file fails to parse. In that case, do the following

eval "$(shdotenv [OPTION]... || echo "exit $?")"

csh, tcsh

set newline='\
'
eval "`shdotenv -f csh [OPTION]...`"

fish

eval (shdotenv -f fish [OPTION]...)

Export environment variables safely

This is similar to export, env and printenv commands, but quoting correctly and exports only portable environment variable name that are valid as identifier for POSIX shell.

shdotenv export [-n | -p] [NAME]...

Additional CLI utility

contrib/dockerenv

The docker command has the --env-file option, but it only supports setting simple values.

This tool makes the files read by --env-file compatible with the .env format, and supports variable expansion and newlines.

Example: (Use dockerenv instead of docker)

dockerenv run --env-file .env -it debian

.env file syntax

# dotenv posix
# This line is a comment, The above line is a directive
COMMENT=This-#-is-a-character # This is a comment

UNQUOTED=value1 # Spaces and some special characters cannot be used
SINGLE_QUOTED='value 2' # Cannot use single quote
DOUBLE_QUOTED="value 3" # Some special characters need to be escaped

MULTILINE="line1
line2: \n is not a newline
line3"
LONGLINE="https://github.com/ko1nksm\
/shdotenv/blob/main/README.md"

ENDPOINT="http://${HOST}/api" # Variable expansion requires braces

export EXPORT1="value"
export EXPORT2 # Equivalent to: export EXPORT2="${EXPORT2:-}"
  • The syntax is a subset of the POSIX shell.
  • The first line is an optional directive that specifies the dialect of the .env syntax
  • No spaces are allowed before or after the = separating the name and value
  • ANSI-C style escapes are not available (i.e., \n is not a newline)
  • Unquoted value
    • The special characters that can be used are # % + , - . / : = @ ^ _
  • Single-quoted value
    • The disallowed character is: '
    • It can contain newline characters.
  • Double-quoted value
    • Variable expansion is available (only ${VAR} style is supported)
    • The following values should be escaped with a backslash (\): $ ` " \
    • The \ at the end of a line value means line continuation
    • It can contain newline characters.
  • An optional export prefix can be added to the name
  • Comments at the end of a line need to be preceded by spaces before the #

Detailed POSIX-compliant .env syntax specification

Directive

Specifies the dotenv syntanx dialect that this .env file.

# dotenv <DIALECT>

Example:

# dotenv ruby

Supported dialects

The formal .env syntax for this project is posix only. The posix is a subset of the POSIX shell and is compatible with shell scripts. Support for other .env syntax dialects is for interoperability purposes. Compatibility will be improved gradually, but is not fully compatible. Reports of problems are welcome.

Comparing Dialects

.shdotenv

Specifies options for shdotenv. Currently, only dialect is supported. It is recommended that the dotenv dialect be specified with the dotenv directive. The .shdotenv setting is for personal use in projects where it is not allowed.

dialect: <DIALECT>

Example:

dialect: ruby

Environment Variables

name description default
SHDOTENV_FORMAT Output format (sh, fish, etc.) sh
SHDOTENV_AWK Path of the awk command awk

FAQ

Note and reference: The FAQs present on motdotla's dotenv node project page and cdimascio's dotenv-java project page are so well done that I've included those that are relevant in the FAQs above.

Q: Should I deploy a .env to e.g. production?

A: Tenant III of the 12 factor app methodology states "The twelve-factor app stores config in environment variables". Thus, it is not recommended to provide the .env file to such environments. dotenv, however, is super useful in e.g a local development environment as it enables a developer to manage the environment via a file which is more convenient.

Using dotenv in production would be cheating. This type of usage, however is an anti-pattern.

Q: Should I commit my .env file?

No. We strongly recommend against committing your .env file to version control. It should only include environment-specific values such as database passwords or API keys. Your production database should have a different password than your development database.

Q: What happens to environment variables that were already set?

By default, we will never modify any environment variables that have already been set. In particular, if there is a variable in your .env file which collides with one that already exists in your environment, then that variable will be skipped.

If instead, you want to override environment variables use the --overload option.

shdotenv --overload

Q: Why can't I define an environment variable with the same name in the .env file?

We allows multiple .env files for convenience and interoperability with other dotenv tools. However, we believe that being able to use the same name in different .env files will lead to environment variables that are not "fully orthogonal" as The Twelve-Factor App outlines.

In a twelve-factor app, env vars are granular controls, each fully orthogonal to other env vars. They are never grouped together as “environments”, but instead are independently managed for each deploy. This is a model that scales up smoothly as the app naturally expands into more deploys over its lifetime.

– The Twelve-Factor App

If you want to override a previous definition, use the --overload option.

More Repositories

1

getoptions

An elegant option/argument parser for shell scripts (full support for bash and all POSIX shells)
Shell
303
star
2

readlinkf

Portable POSIX compliant readlink -f implementation for shell scripts
Shell
43
star
3

ghostplay

Automatic terminal input tool - ghost types your script!
Shell
23
star
4

eopen-ecd

Open from WSL + Change Terminal and Explorer directory at once
C++
21
star
5

portable-echo.sh

Portable echo shell function for POSIX compliant shells
Shell
9
star
6

sh-i18n

Fully portable gettext library for POSIX-compliant shell scripts
Shell
7
star
7

sh-argparse

Argument parser for shell functions
Shell
6
star
8

modulesh

Tiny module system for POSIX compatible shell script
Shell
5
star
9

docker-events-plugin

Simple plugin framework for docker events
Shell
4
star
10

optionsh

Option parse code for POSIX-compliant shell scripts that high function and short
Shell
4
star
11

lowline

POSIX-compliant shell script function library
4
star
12

docker-nsupdate-plugin

Shell
3
star
13

stash

Library to realize local variables for shell scripts
Shell
3
star
14

psig

Print signal mask
Shell
3
star
15

sh-hmac-sha1

HMAC-SHA1 implemented in POSIX shell script (without openssl)
Shell
2
star
16

infill

Things like dotfiles for reno (personal use)
Shell
2
star
17

shell-pipeline-parallelism

Basic knowledge of shell parallel processing
Shell
2
star
18

io

io - Summarize I/O resources used by the command (like the time command)
Shell
2
star
19

sh-base64

Base64 encoder/decoder implementation for portable shell scripts
Shell
2
star
20

sh-i18n-examples

sh, bash, ksh i18n examples
Shell
2
star
21

devenv

My development environment (personal use)
Shell
2
star
22

docker-depot

Develop docker image more easily
Shell
2
star
23

reno

Home directory management tool
Shell
2
star
24

kcov-alpine-docker

Docker image of kcov based on alpine
Dockerfile
2
star
25

sh-pipestatus

Portable PIPESTATUS with pipefail support for POSIX shells
Shell
1
star
26

url

URL builder with URL encoding for CLI and portable shell scripts
Shell
1
star
27

dockerfiles

My favorite dockerfiles (personal use)
1
star
28

ksh93-i18n

ksh93 i18n (catgets) example
Shell
1
star
29

vpn-server

Easily deploy OpenVPN Server on Google Cloud Platform
Shell
1
star
30

various

1
star
31

sh-path

Path library for POSIX shell scripts
Shell
1
star
32

infill-sample

Sample infill for reno
1
star
33

docker-client-only-binary

Shell
1
star
34

homebrew-getoptions

Ruby
1
star
35

devdns

Dynamic DNS Server for development
Shell
1
star
36

bash

Dockerfile for bash
Dockerfile
1
star
37

vagrant-dev

Development environment framework for vagrant (alpha)
Shell
1
star
38

easy-rsa-shell

Easy and secure shell for manage a PKI CA using EasyRSA
Shell
1
star