Skip to content

Commit

Permalink
Removed quotation mark in environment files
Browse files Browse the repository at this point in the history
  • Loading branch information
tsundvoll committed Feb 1, 2024
1 parent fdba120 commit 9932631
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ if [ "$backend_abort" != "true" ]; then
fi
done

echo "AZURE_CLIENT_ID='$az_client_id'" >> $flotilla_dir/backend/api/.env
echo "AZURE_CLIENT_ID=$az_client_id" >> $flotilla_dir/backend/api/.env
echo -e "Added client id to .env file"

echo -e "Azure tenant id needed for backend dockerization."
Expand All @@ -139,7 +139,7 @@ if [ "$backend_abort" != "true" ]; then
fi
done

echo "AZURE_TENANT_ID='$az_tenant_id'" >> $flotilla_dir/backend/api/.env
echo "AZURE_TENANT_ID=$az_tenant_id" >> $flotilla_dir/backend/api/.env
echo -e "Added tenant id to .env file"

echo -e "Azure client secret needed for backend dockerization."
Expand All @@ -157,7 +157,7 @@ if [ "$backend_abort" != "true" ]; then
fi
done

echo "AZURE_CLIENT_SECRET='$az_client_secret'" >> $flotilla_dir/backend/api/.env
echo "AZURE_CLIENT_SECRET=$az_client_secret" >> $flotilla_dir/backend/api/.env
echo -e "Added client secret to .env file"

echo -e "A username is needed for local development with SignalR"
Expand All @@ -175,7 +175,7 @@ if [ "$backend_abort" != "true" ]; then
fi
done

echo "LOCAL_DEVUSERID='$local_dev_username'" >> $flotilla_dir/backend/api/.env
echo "LOCAL_DEVUSERID=$local_dev_username" >> $flotilla_dir/backend/api/.env
echo -e "Added local development username to .env file"

echo -e "Backup setup - Done!"
Expand Down Expand Up @@ -215,4 +215,3 @@ if [ "$broker_abort" != "true" ]; then
echo -e "Flotilla setup - Done!"
echo -e "-----------------------------"
fi

0 comments on commit 9932631

Please sign in to comment.