Skip to content
Snippets Groups Projects
Commit f83edfd9 authored by Joost Rijneveld's avatar Joost Rijneveld
Browse files

Merge branch 'doc/settings' into 'master'

Clarify some things about settings with some comments

See merge request !315
parents aae44beb b71c31d9
No related branches found
No related tags found
1 merge request!315Clarify some things about settings with some comments
"""
Settings module
This file controls what settings are loaded.
Using environment variables you can control the loading of various
overrides.
"""
# flake8: noqa
import os
# Load base settings
from .settings import *
# Attempt to load local overrides
try:
from .localsettings import *
except ImportError:
pass
if os.environ.get('DJANGO_PRODUCTION'):
# Load production settings if DJANGO_PRODUCTION is set
if os.environ.get('DJANGO_PRODUCTION'): # pragma: nocover
from .production import *
if os.environ.get('GITLAB_CI'):
# Load testing settings if GITLAB_CI is set
if os.environ.get('GITLAB_CI'): # pragma: nocover
from .testing import *
"""
Django settings for thaliawebsite project.
Django production settings for thaliawebsite project.
Docker version
Many of these settings override settings from settings.py.
This file is loaded by __init__.py if the environment variable
`DJANGO_PRODUCTION` is set.
See https://docs.djangoproject.com/en/dev/howto/deployment/checklist/
"""
......
"""
Django settings for thaliawebsite project.
Generated by 'django-admin startproject' using Django 1.10b1.
This file is loaded by __init__.py.
Its settings may be overridden by files loaded after it.
For more information on this file, see
https://docs.djangoproject.com/en/dev/topics/settings/
......
"""
Settings for CI testing
This file is loaded by __init__.py if GITLAB_CI is set in the environment
"""
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment