mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-23 06:37:15 +00:00
Change AIL_APP_SECRET_KEY from uuid to a long random string
This commit is contained in:
parent
316831d337
commit
09a9af36fa
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue