Skip to content

Commit

Permalink
Fix KAUI_SECRET_KEY_BASE issue
Browse files Browse the repository at this point in the history
  • Loading branch information
reshmabidikar committed Feb 29, 2024
1 parent e3e2c96 commit 6eb1137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/templates/kaui/latest/setenv2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ fi
if [ ! -z ${KAUI_CONFIG_DAO_PASSWORD+x} ]; then
export KAUI_DB_PASSWORD=$KAUI_CONFIG_DAO_PASSWORD
fi
if [ ! -z ${KAUI_SECRET_KEY_BASE+x} ]; then
if [ -z ${KAUI_SECRET_KEY_BASE+x} ]; then
export KAUI_SECRET_KEY_BASE=$(head -c 1024 /dev/urandom | base64 | tr -cd "[:upper:][:digit:]" | head -c 129)
fi

0 comments on commit 6eb1137

Please sign in to comment.