You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
# -*- coding: utf-8 -*-
|
|
from settings import *
|
|
|
|
DEBUG = False
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
ADMINS = (
|
|
('andrey.goo', 'andrey.goo@gmail.com'),
|
|
)
|
|
|
|
MANAGERS = ADMINS
|
|
|
|
SERVER_EMAIL = 'dokumentor@localhost'
|
|
|
|
ALLOWED_HOSTS = ['dokumentor.ru']
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
|
|
'NAME': 'dokumentor', # Or path to database file if using sqlite3.
|
|
'USER': 'dokumentor', # Not used with sqlite3.
|
|
'PASSWORD': 'dokumentor', # Not used with sqlite3.
|
|
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
|
|
'PORT': '', # Set to empty string for default. Not used with sqlite3.
|
|
}
|
|
}
|
|
|
|
# переопределить secret_key, на случай если посторонние имели доступ к исходникам проекта
|
|
#SECRET_KEY = '30rdy#9a!y-=^kdh6+v*e$cxdf$uu7djbnlm#=c(g^30@250rb'
|
|
|