From 258b8b955bdd3d0b5a0f13712675629f8691b99c Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Sun, 17 Jul 2022 19:55:43 -0700 Subject: [PATCH] Rename settings.py -> settings.example.py When a new deployment is created, or when new settings are added, we want to avoid overwriting settings that may already be present. So we use the settings.example.py file for default settings and settings.py for deployment settings instead. Signed-off-by: Alek Ratzloff --- .gitignore | 1 + threadchat/{settings.py => settings.example.py} | 0 2 files changed, 1 insertion(+) rename threadchat/{settings.py => settings.example.py} (100%) diff --git a/.gitignore b/.gitignore index db724a9..2c9c187 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ ALLOWED_HOSTS +threadchat/settings.py ### Django ### *.log diff --git a/threadchat/settings.py b/threadchat/settings.example.py similarity index 100% rename from threadchat/settings.py rename to threadchat/settings.example.py