Add dark theme and secret key creation script

This commit is contained in:
2026-09-18 23:03:05 +03:00
parent d1d594674f
commit d048ef82b7
8 changed files with 252 additions and 10 deletions
+9
View File
@@ -0,0 +1,9 @@
# Prints a cryptographically random SECRET_KEY value; does not modify .env.
$bytes = [byte[]]::new(32)
$rng = [System.Security.Cryptography.RNGCryptoServiceProvider]::new()
try {
$rng.GetBytes($bytes)
} finally {
$rng.Dispose()
}
($bytes | ForEach-Object { $_.ToString("x2") }) -join ""