mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 04:07:48 +03:00
remove south
This commit is contained in:
parent
94bca534b0
commit
eefdf06fb0
|
@ -13,7 +13,6 @@ django-crispy-forms==1.4.0
|
|||
django-floppyforms==1.2.0
|
||||
|
||||
# Models
|
||||
South==1.0
|
||||
django-model-utils==2.2
|
||||
|
||||
# images
|
||||
|
|
|
@ -37,9 +37,11 @@ class Common(Configuration):
|
|||
'django.contrib.admin',
|
||||
)
|
||||
THIRD_PARTY_APPS = (
|
||||
'south', # Database migration helpers:
|
||||
'crispy_forms', # Form layouts
|
||||
'avatar', # for user avatars
|
||||
'allauth', # registration
|
||||
'allauth.account', # registration
|
||||
'allauth.socialaccount', # registration
|
||||
)
|
||||
|
||||
# Apps specific for this project go here.
|
||||
|
@ -50,14 +52,6 @@ class Common(Configuration):
|
|||
|
||||
# See: https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
|
||||
INSTALLED_APPS = DJANGO_APPS + THIRD_PARTY_APPS + LOCAL_APPS
|
||||
|
||||
INSTALLED_APPS += (
|
||||
# Needs to come last for now because of a weird edge case between
|
||||
# South and allauth
|
||||
'allauth', # registration
|
||||
'allauth.account', # registration
|
||||
'allauth.socialaccount', # registration
|
||||
)
|
||||
# END APP CONFIGURATION
|
||||
|
||||
# MIDDLEWARE CONFIGURATION
|
||||
|
|
0
{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/manage.py
Normal file → Executable file
0
{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/manage.py
Normal file → Executable file
Loading…
Reference in New Issue
Block a user