Printing Environment Variables
Use envictus printenv to output the resolved environment variables to stdout. This is useful for piping to other tools:
# Print in dotenv format (default)envictus printenv
# Print in JSON formatenvictus printenv --format jsonenvictus printenv -f json
# Pipe to wrangler secret bulkenvictus printenv | wrangler secret bulk
# Pipe to other toolsenvictus printenv -f json | jq '.DATABASE_URL'