chmod +x set_heroku_env.sh
./set_heroku_env.sh
Last active
August 22, 2024 18:18
-
-
Save santospatrick/ae0b35bad76b42b95c5c051750e64f9f to your computer and use it in GitHub Desktop.
Set heroku env variables from .env file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Check if .env.local file exists | |
if [ ! -f .env.local ]; then | |
echo "Error: .env.local file not found" | |
exit 1 | |
fi | |
# Read variables from .env.local file and set them as Heroku environment variables | |
while IFS='=' read -r key value; do | |
# Skip lines starting with # | |
if [[ ! -z "$key" && ! -z "$value" && "${key:0:1}" != "#" ]]; then | |
heroku config:set "$key"="$value" --app your-app-name | |
fi | |
done < .env.local | |
echo "Heroku environment variables set successfully" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment