From 5f62d3edf3f0d8bdd36765bb992cdcea91e28564 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 17 Aug 2016 14:21:33 +0200 Subject: CI: specific conf for CI - fix DB host --- example_project/local_settings.py.gitlab-ci | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 example_project/local_settings.py.gitlab-ci (limited to 'example_project/local_settings.py.gitlab-ci') diff --git a/example_project/local_settings.py.gitlab-ci b/example_project/local_settings.py.gitlab-ci new file mode 100644 index 000000000..6c7e5fbba --- /dev/null +++ b/example_project/local_settings.py.gitlab-ci @@ -0,0 +1,12 @@ +DATABASES = { + 'default': { + 'ENGINE': 'django.contrib.gis.db.backends.postgis', + 'NAME': 'ishtar', + 'USER': 'ishtar', + 'PASSWORD': 'ishtar', + 'HOST': 'mdillon-postgis', + 'PORT': '5432', + } +} + +LOGFILE = '/tmp/ishtar.log' -- cgit v1.2.3