cookiecutter-django/{{cookiecutter.repo_name}}/requirements/production.txt
Saurabh Kumar bb5505f3a4 fix(whitenoise): move dependency in base.txt,
- required for 'runserver' to run properly

Thanks to @acquayefrank

closes #230
2015-04-29 08:39:43 +05:30

17 lines
422 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' -%}
Collectfast==0.2.3
{%- endif %}