From c0ece9ca5e939300c3ada3229fddafbf353893d9 Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Tue, 14 Dec 2021 23:55:06 +0100 Subject: [PATCH] Add example secrets file The file should hold all instance-specific configuration --- wish.secrets | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 wish.secrets diff --git a/wish.secrets b/wish.secrets new file mode 100644 index 0000000..969d2a8 --- /dev/null +++ b/wish.secrets @@ -0,0 +1,20 @@ +# This is an override file for wish's settings. +# It is pure Python, sourced from the settings. +# This file should be the only one to hold instance/deployment specific settings. + +# This is an example. It may serve as a reasonable start, but do not just +# blindly copy it to your production environment and expect it to work. + +DEBUG = False +SECRET_KEY = ... +ALLOWED_HOSTS = [...] +DATABASES = { + 'default': { + 'ENGINE': ..., + ...: ..., + }, +} + +EMAIL_BACKEND = ... +DEFAULT_FROM_EMAIL = ... +SERVER_EMAIL = ...