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