added automatic Key Generation for Empty .env Keys
This commit is contained in:
5
bin/generate_key.sh
Normal file
5
bin/generate_key.sh
Normal file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
# This script generates a random 32-character alphanumeric key
|
||||
|
||||
KEY=$(tr -dc 'A-Za-z0-9' < /dev/urandom | head -c 32)
|
||||
echo "$KEY"
|
||||
Reference in New Issue
Block a user