diff options
Diffstat (limited to 'example_project/settings.py.example')
-rw-r--r-- | example_project/settings.py.example | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/example_project/settings.py.example b/example_project/settings.py.example index 6cef223..908dbe1 100644 --- a/example_project/settings.py.example +++ b/example_project/settings.py.example @@ -7,6 +7,7 @@ import os PROJECT_NAME = u'Chimère' ROOT_PATH = os.path.realpath(os.path.dirname(__file__)) + "/" +SERVER_URL = 'http://www.mydomain.com/' EXTRA_URL = 'chimere/' BASE_URL = SERVER_URL + EXTRA_URL EMAIL_HOST = 'localhost' @@ -188,7 +189,7 @@ if 'chimere_rss' in INSTALLED_APPS: LOGGING = {'version': 1, 'disable_existing_loggers': False, 'handlers': { - /# Include the default Django email handler for errors + # Include the default Django email handler for errors # This is what you'd get without configuring logging at all. 'mail_admins': { 'class': 'django.utils.log.AdminEmailHandler', |