moar settings stuff

This commit is contained in:
Daniel Greenfeld 2013-08-15 20:31:04 +02:00
parent c8a01b6bad
commit 6c772daca3
2 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,4 @@
{ {
"project_name": "project_name", "project_name": "project_name",
"repo_name":"repo_name" "repo_name":"repo_name"
} }

View File

@ -195,14 +195,23 @@ DJANGO_APPS = (
THIRD_PARTY_APPS = ( THIRD_PARTY_APPS = (
# Database migration helpers: # Database migration helpers:
'south', 'south',
'floppy_forms',
'crispy_forms',
# 'avatar',
) )
# Apps specific for this project go here. # Apps specific for this project go here.
LOCAL_APPS = ( LOCAL_APPS = (
'users', # new users app goes here!
) )
# See: https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps # See: https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
INSTALLED_APPS += (
'allauth', # registration
'allauth.account', # registration
'allauth.socialaccount', # registration
)
########## END APP CONFIGURATION ########## END APP CONFIGURATION