blob: 4d4e9e4c8c9278fabae801e8d4b94e1f43276bf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Sites
SITE_ID = 1
# Your site's domain. This is used only in this file.
SITE_DOMAIN = '<%= domain %>'
ADMINS = (
# ('Your Name', 'your_email@domain.com'),
)
MANAGERS = ADMINS
DEBUG = True
TEMPLATE_DEBUG = DEBUG
SERVE_MEDIA = DEBUG
# This defines who can see {% if debug %}{% endif %} blocks
INTERNAL_IPS=('127.0.0.1',)
# Email sending
EMAIL_HOST = 'localhost'
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_USE_TLS = False
EMAIL_PORT = 587
DEFAULT_FROM_EMAIL = 'noreply@%s' % SITE_DOMAIN
|