Skip to content

Commit

Permalink
Upgraded to Django 1.8.3 and Wagtail 1.0 - Issue chrisdev#22
Browse files Browse the repository at this point in the history
  • Loading branch information
Parbhat committed Aug 4, 2015
1 parent 640e686 commit 9bb1ce4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def create_homepage(apps, schema_editor):

# Create content type for homepage model
homepage_content_type, created = ContentType.objects.get_or_create(
model='homepage', app_label='pages', defaults={'name': 'Homepage'})
model='homepage', app_label='pages')

# Create a new homepage
homepage = HomePage.objects.create(
Expand Down
13 changes: 7 additions & 6 deletions {{cookiecutter.repo_name}}/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
Django==1.7.9
psycopg2==2.6
elasticsearch==1.2.0
django-redis==3.8.2
wagtail>=0.8.8,<1.0
celery==3.1.17
Django==1.8.3
psycopg2==2.6.1
elasticsearch==1.6.0
django-redis==4.2.0
wagtail==1.0
celery==3.1.18
Fabric==1.10.2
django-libsass==0.3
4 changes: 2 additions & 2 deletions {{cookiecutter.repo_name}}/requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ django-medusa==0.3.0
django-sendfile==0.3.8

# django-debug-toolbar that works with Django 1.5+
django-debug-toolbar==1.3.0
django-extensions==1.5.1
django-debug-toolbar==1.3.2
django-extensions==1.5.5
2 changes: 1 addition & 1 deletion {{cookiecutter.repo_name}}/requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
django-celery==3.1.16
gunicorn==19.3
redis==2.10.3
django-redis-cache==1.2.0
django-redis-cache==1.5.3
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
urlpatterns += staticfiles_urlpatterns()
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
urlpatterns += [
url(r'^favicon\.ico$', RedirectView.as_view(url=settings.STATIC_URL + 'favicon.ico'))
url(r'^favicon\.ico$', RedirectView.as_view(url=settings.STATIC_URL + 'favicon.ico', permanent=True))
]

0 comments on commit 9bb1ce4

Please sign in to comment.