diff options
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/' |