summaryrefslogtreecommitdiff
path: root/chimere_example_project
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-09-14 20:49:55 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-09-14 20:49:55 +0200
commitd10f5ccf9a2ac41ca66f18684d1d4e9b98263356 (patch)
tree2dcc2f1bd9c1fcf023010494596a66794f2ea36a /chimere_example_project
parentf3687be0aca5d67284f96c22337b83b75463075c (diff)
downloadChimère-d10f5ccf9a2ac41ca66f18684d1d4e9b98263356.tar.bz2
Chimère-d10f5ccf9a2ac41ca66f18684d1d4e9b98263356.zip
CI: specific local_settings - change DB parameters
Diffstat (limited to 'chimere_example_project')
-rw-r--r--chimere_example_project/local_settings.py.gitlab-ci15
1 files changed, 15 insertions, 0 deletions
diff --git a/chimere_example_project/local_settings.py.gitlab-ci b/chimere_example_project/local_settings.py.gitlab-ci
new file mode 100644
index 0000000..9ad355a
--- /dev/null
+++ b/chimere_example_project/local_settings.py.gitlab-ci
@@ -0,0 +1,15 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.contrib.gis.db.backends.postgis',
+ 'NAME': 'gis',
+ 'USER': 'gis',
+ 'PASSWORD': 'gis',
+ 'HOST': 'iggdrasil-postgis-1.5',
+ 'PORT': '5432',
+ },
+}
+
+LOG_PATH = '/tmp/'