blob: 879abf009139891bb5a7b4b3b1e1ab8952ba47e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
RESPONSIBLE_EMAIL = None
# Cache for http request - set to false in production
DEV = True
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#"]
|