Skip to content

Commit

Permalink
Better defaults for urls, mail, and admin media prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Apr 1, 2011
1 parent 320fd81 commit 8134027
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chishop/conf/default.py
Expand Up @@ -20,7 +20,7 @@
ACCOUNT_ACTIVATION_DAYS = 7
LOGIN_REDIRECT_URL = "/"

EMAIL_HOST = ''
EMAIL_HOST = 'localhost'
DEFAULT_FROM_EMAIL = ''
SERVER_EMAIL = DEFAULT_FROM_EMAIL

Expand Down Expand Up @@ -63,7 +63,7 @@
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
# trailing slash.
# Examples: "http://foo.com/media/", "/media/".
ADMIN_MEDIA_PREFIX = '/admin-media/'
ADMIN_MEDIA_PREFIX = '/admin/media/'

# Make this unique, and don't share it with anybody.
SECRET_KEY = 'w_#0r2hh)=!zbynb*gg&969@)sy#^-^ia3m*+sd4@lst$zyaxu'
Expand All @@ -81,7 +81,7 @@
'django.contrib.auth.middleware.AuthenticationMiddleware',
)

ROOT_URLCONF = 'urls'
ROOT_URLCONF = 'chishop.urls'

TEMPLATE_CONTEXT_PROCESSORS = (
"django.core.context_processors.auth",
Expand Down

0 comments on commit 8134027

Please sign in to comment.