From d5cfe819782f393c5435a33a491257a21457203c Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Wed, 20 Jul 2022 00:29:34 -0700 Subject: [PATCH] Add TRIPCODE_SALT setting to settings example Signed-off-by: Alek Ratzloff --- threadchat/settings.example.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/threadchat/settings.example.py b/threadchat/settings.example.py index 6cb70a8..6a0e999 100644 --- a/threadchat/settings.example.py +++ b/threadchat/settings.example.py @@ -143,6 +143,9 @@ STATIC_ROOT = "static/" # Default primary key field type # https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field +# Tripcode salt to use. Should be reasonably random. +TRIPCODE_SALT = env("TRIPCODE_SALT") + # X-Frame-Options header from XFrameOptionsMiddleware X_FRAME_OPTIONS = "SAMEORIGIN"