mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 17:47:08 +03:00
moar settings stuff
This commit is contained in:
parent
c8a01b6bad
commit
6c772daca3
|
@ -1,6 +1,4 @@
|
||||||
{
|
{
|
||||||
"project_name": "project_name",
|
"project_name": "project_name",
|
||||||
"repo_name":"repo_name"
|
"repo_name":"repo_name"
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
|
@ -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
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user