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

40 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-04-26 08:59:02 +03:00
# Pro-tip: Try not to put anything here. Avoid dependencies in
# production that aren't in development.
-r base.txt
{% if cookiecutter.windows == 'y' -%}
# Python-PostgreSQL Database Adapter
# Assuming Windows is used locally, and *nix -- in production.
# ------------------------------------------------------------
psycopg2==2.7.3.1
{%- endif %}
# WSGI Handler
# ------------------------------------------------
gevent==1.2.2
gunicorn==19.7.1
# Static and Media Storage
# ------------------------------------------------
2017-08-30 00:18:03 +03:00
boto3==1.4.7
django-storages==1.6.5
{% if cookiecutter.use_whitenoise != 'y' -%}
Collectfast==0.5.2
{%- endif %}
2015-07-06 21:23:12 +03:00
# Email backends for Mailgun, Postmark, SendGrid and more
# -------------------------------------------------------
django-anymail==0.11.1
2015-07-27 18:42:23 +03:00
2016-06-05 20:47:07 +03:00
{% if cookiecutter.use_sentry_for_error_reporting == "y" -%}
2015-07-27 18:42:23 +03:00
# Raven is the Sentry client
# --------------------------
2017-05-26 01:02:53 +03:00
raven==6.1.0
2015-07-27 18:42:23 +03:00
{%- endif %}
2015-10-04 15:06:20 +03:00
{% if cookiecutter.use_opbeat == "y" -%}
# Opbeat agent for performance monitoring
# -----------------------------------------
opbeat==3.5.2
{%- endif %}