From f998ce6707d8dcfc6192111d43794b4426e70412 Mon Sep 17 00:00:00 2001 From: Oliver Falk Date: Tue, 12 Feb 2019 15:49:59 +0100 Subject: [PATCH] Local config shoulnd't be in git repo => Closes #38 --- .gitignore | 1 + config_local.py | 9 --------- 2 files changed, 1 insertion(+), 9 deletions(-) delete mode 100644 config_local.py diff --git a/.gitignore b/.gitignore index 5ffd46b..ba7af6f 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ htmlcov/ .ropeproject/ db.sqlite3.SAVE node_modules/ +config_local.py diff --git a/config_local.py b/config_local.py deleted file mode 100644 index cb6aa6a..0000000 --- a/config_local.py +++ /dev/null @@ -1,9 +0,0 @@ -''' -Local config -''' - -from ivatar.settings import TEMPLATES # noqa - -SESSION_COOKIE_SECURE = False -DEBUG = True -TEMPLATES[0]['OPTIONS']['debug'] = True