Skip to main content

Export All Variables From .env

·21 words·1 min
O11y | Cloud
Author
O11y | Cloud
Site Reliability Engineer

When you need to export all variable from .env in linux/MacOS using oneliner:

set -a && source .env && set +a