fix(whitenoise): move dependency in base.txt,

- required for 'runserver' to run properly

Thanks to @acquayefrank

closes #230
This commit is contained in:
Saurabh Kumar 2015-04-29 08:39:43 +05:30
parent f8160a089d
commit bb5505f3a4
2 changed files with 5 additions and 3 deletions

View File

@ -4,6 +4,10 @@ django==1.8
# Configuration
django-environ==0.3.0
django-secure==1.0.1
{% if cookiecutter.use_whitenoise == 'y' -%}
whitenoise==1.0.6
{%- endif %}
# Forms
django-braces==1.8.0

View File

@ -11,8 +11,6 @@ gunicorn==19.3.0
# ------------------------------------------------
boto==2.38.0
django-storages-redux==1.2.3
{% if cookiecutter.use_whitenoise == 'y' -%}
whitenoise==1.0.6
{% else %}
{% if cookiecutter.use_whitenoise != 'y' -%}
Collectfast==0.2.3
{%- endif %}