Update config.json

I missed modifying the schema and in addition changes the enable/disable options to use "bool" instead of "str" to align better with the options
This commit is contained in:
ddcash
2024-07-21 12:46:51 -05:00
committed by GitHub
parent bfc4d2e5fd
commit 669899a373

View File

@@ -11,7 +11,7 @@
"NEXTAUTH_URL": "http://localhost:3000/api/v1/auth",
"NEXT_PUBLIC_AUTHENTIK_ENABLED": "false",
"NEXT_PUBLIC_CREDENTIALS_ENABLED": "true",
"NEXT_PUBLIC_DISABLE_REGISTRATION": "False",
"NEXT_PUBLIC_DISABLE_REGISTRATION": "false",
"AUTHENTIK_CUSTOM_NAME": "Authentik",
"AUTHENTIK_ISSUER": "https://authentik.my-doma.in/application/o/linkwarden",
"AUTHENTIK_CLIENT_ID": "CLIENT_ID",
@@ -31,10 +31,12 @@
},
"schema": {
"DATABASE_URL": "str?",
"STORAGE_FOLDER": "str?",
"NEXTAUTH_SECRET": "str",
"NEXTAUTH_URL": "str?",
"NEXT_PUBLIC_AUTHENTIK_ENABLED": "str?",
"STORAGE_FOLDER": "str?",
"NEXT_PUBLIC_AUTHENTIK_ENABLED": "bool?",
"NEXT_PUBLIC_CREDENTIALS_ENABLED": "bool?",
"NEXT_PUBLIC_DISABLE_REGISTRATION": "bool?",
"AUTHENTIK_CUSTOM_NAME": "str?",
"AUTHENTIK_ISSUER": "str?",
"AUTHENTIK_CLIENT_ID": "str?",