diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-03-10 00:07:27 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-03-10 00:07:27 +0100 |
commit | 4bb1c7af22c2d4a1fde430f7cda5ad75e193b9dc (patch) | |
tree | ce18a1f9c25d90586266fe5c11057dd35167b0f2 /example_project/settings.py.example | |
parent | 2f34bcf0b5e929ca32e6ba8b906bf83571b0bdc7 (diff) | |
download | Chimère-4bb1c7af22c2d4a1fde430f7cda5ad75e193b9dc.tar.bz2 Chimère-4bb1c7af22c2d4a1fde430f7cda5ad75e193b9dc.zip |
Reorganize fixtures
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', |