From 6c772daca3f2cb56352a682c717962e5d7cc1b23 Mon Sep 17 00:00:00 2001 From: Daniel Greenfeld Date: Thu, 15 Aug 2013 20:31:04 +0200 Subject: [PATCH] moar settings stuff --- cookiecutter.json | 2 -- .../{{cookiecutter.repo_name}}/config/settings/base.py | 9 +++++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/cookiecutter.json b/cookiecutter.json index 9719d713..d3c2c55c 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -1,6 +1,4 @@ { "project_name": "project_name", "repo_name":"repo_name" - - } \ No newline at end of file diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings/base.py b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings/base.py index c8fc048b..be7674cf 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings/base.py +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/config/settings/base.py @@ -195,14 +195,23 @@ DJANGO_APPS = ( THIRD_PARTY_APPS = ( # Database migration helpers: 'south', + 'floppy_forms', + 'crispy_forms', + # 'avatar', ) # Apps specific for this project go here. LOCAL_APPS = ( + 'users', # new users app goes here! ) # See: https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS +INSTALLED_APPS += ( + 'allauth', # registration + 'allauth.account', # registration + 'allauth.socialaccount', # registration +) ########## END APP CONFIGURATION