feat: use random value for auth secret

This commit is contained in:
Sturdy 2024-01-31 13:57:04 +01:00
parent 0fc5dd5872
commit 88de8f4595

View File

@ -15,10 +15,10 @@
"supported_architectures": ["amd64"],
"form_fields": [
{
"type": "password",
"label": "Next.js Auth secret. Generate one with `openssl rand -base64 32`",
"type": "random",
"label": "Next.js Auth secret",
"required": true,
"min": 1,
"min": 50,
"max": 1024,
"env_variable": "CALCOM_NEXTAUTH_SECRET"
},