Adding accounts.

master
Nick Sergeant 2012-06-26 11:33:22 -04:00
parent 5eb342edb3
commit efeac8bc5e
2 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -1,3 +1,2 @@
from django.db import models
# Create your models here.