Skip to content

Instantly share code, notes, and snippets.

@kjivan
Created September 9, 2024 15:50
Show Gist options
  • Save kjivan/5f73483b4699fc15969c17ed02ddd59d to your computer and use it in GitHub Desktop.
Save kjivan/5f73483b4699fc15969c17ed02ddd59d to your computer and use it in GitHub Desktop.

Set environment variables from .env file

# Export .env variables if .env file exists
# https://stackoverflow.com/a/34093548
set -a
[ -f .env ] && source .env
set +a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment