# This is an example .env file for testing load()

    ### SIMPLE EXAMPLE ####

REDIS_PORT=6379
REDIS_PASSWORD=pLj#CfXTY2kcMp5jrJWBDUhpi5iatPAwpCUz&^Zjdzgxny4WaCuw32w4@qhXbt4vjW2WXkP^KQCbMmr@G*5m8H@vac8hXcFowTkfrwzYygBTqfgcbzrbXgeF

   ###   VARS   ###

# For blank vars, `=` is optional
DEBUG
BLANK=
# Vars may be assigned a single character
TEST=1
# Vars may only be a single character
A=a
# Including a single underscore
_
# If a var is defined more than once, the LAST one will be used
OVERWRITTEN=old
OVERWRITTEN=new
# Vars that already exist in the environment are not replaced
PATH=/bin

    ### WHITESPACE ####

# Whitespace between VAR and `=` is ignored
MINERAL = copper
# Whitespace before a VAR is ignored too
  STOVE   =   hot
# Whitespace after `the` in this example is NOT ignored
WORDS = the quick brown fox jumped over the lazy dog
# Whitespace after `==` is NOT ignored
WHITESPACE ==  1  2  3  4  
# To assign a value that begins with `=`, use `===`
FORMULA ===A + B

    ### COMMENTS ####

# Comment out items as you normally would
# UNUSED = missing
    # Comments may have leading whitespace

# ^ Blank lines are allowed too ^
#
# ^ So are blank comments ^
