Add ability to use custom skin

This commit is contained in:
2026-09-14 19:23:51 +03:00
parent 39ed096d8b
commit 4cb65a6f52
3 changed files with 14 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
<#
.SYNOPSIS
Generates a random 24-character key suitable for RC_DES_KEY in .env.
#>
$key = -join ((48..57) + (65..90) + (97..122) | Get-Random -Count 24 | ForEach-Object { [char]$_ })
Write-Output $key