summaryrefslogtreecommitdiff
path: root/commonnet/local_settings.py.sample
blob: 50b83342a4c671e7dcf28b1f0a620acfda227c9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
RESPONSIBLE_EMAIL = None

# Cache for http request - set to False in production
DEV = True
DEBUG = False

EXTRA_APPS = []

# you probably have at least to set a password for db connection
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'NAME': 'commonnet',
        'USER': 'commonnet',
        'PASSWORD': '#PASSWORD#',
        'HOST': '127.0.0.1',
        'PORT': '5432',
    }
}

ALLOWED_HOSTS = ["#URL#"]