diff --git a/settings.py b/settings.py index cfca227..35521e4 100644 --- a/settings.py +++ b/settings.py @@ -2,7 +2,7 @@ import os, socket -if socket.gethostname() in ['nickmba.local', 'nickimac.local']: +if socket.gethostname() in ['mba.local', 'mbp.local']: DEBUG = True else: DEBUG = False @@ -144,6 +144,7 @@ INSTALLED_APPS = ( 'taggit', 'tastypie', + 'accounts', 'blogs', 'snipts', 'utils', @@ -208,6 +209,9 @@ ABSOLUTE_URL_OVERRIDES = { 'auth.user': lambda u: "/%s/" % u.username, } +# Accounts +AUTH_PROFILE_MODULE = 'accounts.UserProfile' + # Caching # Search diff --git a/utils/models.py b/utils/models.py index 71a8362..beeb308 100644 --- a/utils/models.py +++ b/utils/models.py @@ -1,3 +1,2 @@ from django.db import models -# Create your models here.