cookiecutter-django/{{cookiecutter.repo_name}}/requirements/production.txt
Saurabh Kumar 7fb6f94d5e feat(static_storage): Add support for whitenoise (optional)
- Add option to opt for whitenoise via cookiecutter
- Seperate Media and Static Configuration

closes #213
2015-04-26 15:31:31 +05:30

19 lines
451 B
Plaintext

# Pro-tip: Try not to put anything here. There should be no dependency in
# production that isn't in development.
-r base.txt
# WSGI Handler
# ------------------------------------------------
gevent==1.0.1
gunicorn==19.3.0
# Static and Media Storage
# ------------------------------------------------
boto==2.38.0
django-storages-redux==1.2.3
{% if cookiecutter.use_whitenoise == 'y' -%}
whitenoise==1.0.6
{% else %}
Collectfast==0.2.3
{%- endif %}