blob: 26d1559b5e258f8cb35aca1f7bf595f8236fe308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
DEBUG=True
DATABASES={
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'pgperffarm',
'USER': 'pgperffarm',
'PASSWORD': 'pgperffarm',
'HOST': '/tmp'
}
}
PGAUTH_REDIRECT=''
PGAUTH_KEY=''
PORJECT_PATH = '/var/www/web/pgperffarm' # 'D:\GitSpace\pgperffarm\web\pgperffarm'
PGAUTH_REDIRECT=''
PGAUTH_KEY=''
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = '' # individual smtp password
|