Change AIL_APP_SECRET_KEY from uuid to a long random string

This commit is contained in:
Alan Anselmo 2024-02-07 15:25:43 -03:00
parent 316831d337
commit 09a9af36fa

View file

@ -24,7 +24,7 @@ else
exit 1
fi
export AIL_APP_SECRET_KEY="$(uuidgen)"
export AIL_APP_SECRET_KEY="$(LC_ALL=C tr -dc A-Za-z0-9 </dev/urandom | head -c 200; echo)"
export PATH=$AIL_VENV/bin:$PATH
export PATH=$AIL_HOME:$PATH