added automatic Key Generation for Empty .env Keys

This commit is contained in:
2025-12-03 20:38:40 +01:00
parent 61d94a264f
commit 14b3eb4559
9 changed files with 106 additions and 329 deletions

5
bin/generate_key.sh Normal file
View 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"