From b2670154ff81bdef1b7e4031712b85359fcb4e3b Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 29 Jan 2020 16:44:30 +0100 Subject: Tests with setup.py --- example_project/local_settings.py.setup | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 example_project/local_settings.py.setup (limited to 'example_project/local_settings.py.setup') diff --git a/example_project/local_settings.py.setup b/example_project/local_settings.py.setup new file mode 100644 index 000000000..54dc99c4a --- /dev/null +++ b/example_project/local_settings.py.setup @@ -0,0 +1,17 @@ +DATABASES = { + 'default': { + 'ENGINE': 'django.contrib.gis.db.backends.postgis', + 'NAME': 'ishtar-test', + 'USER': 'ishtar-test', + 'PASSWORD': 'ishtar-test', + 'HOST': '', + 'PORT': '5432', + } +} + +LOGFILE = '/tmp/ishtar.log' + +PROJECT_SLUG = "test-instance" + +SECRET_KEY = "not-so-secret-key" +DISABLE_TASK_TIMEOUT = True -- cgit v1.2.3