Troubleshooting Policy Engine Installation
Correcting Out Environment File
-
Once .env file is modified following command can be run explicitly to correct out any issues in the file:
-
Take back up of existing env file:
cp .env .env.bak -
Run this command to preview the output
sed 's/\r$//' .env | head -
If the preview looks correct, then run
sed -i 's/\r$//' .env
-