diff options
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 |
commit | d10f5ccf9a2ac41ca66f18684d1d4e9b98263356 (patch) | |
tree | 2dcc2f1bd9c1fcf023010494596a66794f2ea36a /chimere_example_project | |
parent | f3687be0aca5d67284f96c22337b83b75463075c (diff) | |
download | Chimè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-ci | 15 |
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/' |