cookiecutter-django/{{cookiecutter.repo_name}}/requirements/production.txt

34 lines
804 B
Plaintext
Raw Normal View History

# Pro-tip: Try not to put anything here. There should be no dependency in
# production that isn't in development.
-r base.txt
{% if cookiecutter.windows == 'y' -%}
# Python-PostgreSQL Database Adapter
# If using Win for dev, this assumes Unix in prod
# ------------------------------------------------
psycopg2==2.6.1
{%- endif %}
# WSGI Handler
# ------------------------------------------------
2015-05-23 20:33:38 +03:00
gevent==1.0.2
2015-03-07 18:53:33 +03:00
gunicorn==19.3.0
# Static and Media Storage
# ------------------------------------------------
boto==2.38.0
django-storages-redux==1.3
{% if cookiecutter.use_whitenoise != 'y' -%}
2015-04-23 01:35:15 +03:00
Collectfast==0.2.3
{%- endif %}
2015-07-06 21:23:12 +03:00
# Mailgun Support
# ---------------
django-mailgun==0.7.2
2015-07-27 18:42:23 +03:00
{% if cookiecutter.use_sentry == "y" -%}
# Raven is the Sentry client
# --------------------------
raven
{%- endif %}