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.
|
2013-08-14 22:01:41 +04:00
|
|
|
-r base.txt
|
|
|
|
|
2015-10-20 02:02:42 +03:00
|
|
|
{% if cookiecutter.windows == 'y' -%}
|
|
|
|
# Python-PostgreSQL Database Adapter
|
2017-09-05 14:39:20 +03:00
|
|
|
# Assuming Windows is used locally, and *nix -- in production.
|
|
|
|
# ------------------------------------------------------------
|
2017-10-24 23:13:08 +03:00
|
|
|
psycopg2==2.7.3.2
|
2015-10-20 02:02:42 +03:00
|
|
|
{%- endif %}
|
|
|
|
|
2015-04-26 12:57:45 +03:00
|
|
|
# WSGI Handler
|
|
|
|
# ------------------------------------------------
|
2017-06-07 18:26:25 +03:00
|
|
|
gevent==1.2.2
|
2017-03-24 13:28:12 +03:00
|
|
|
gunicorn==19.7.1
|
2015-04-26 12:57:45 +03:00
|
|
|
|
|
|
|
# Static and Media Storage
|
|
|
|
# ------------------------------------------------
|
2018-01-29 19:07:10 +03:00
|
|
|
boto3==1.5.22
|
2017-08-02 00:34:09 +03:00
|
|
|
django-storages==1.6.5
|
2015-04-29 06:09:43 +03:00
|
|
|
{% if cookiecutter.use_whitenoise != 'y' -%}
|
2017-12-13 16:06:09 +03:00
|
|
|
Collectfast==0.6.0
|
2015-04-26 12:57:45 +03:00
|
|
|
{%- endif %}
|
2015-07-06 21:23:12 +03:00
|
|
|
|
2016-05-27 21:31:30 +03:00
|
|
|
# Email backends for Mailgun, Postmark, SendGrid and more
|
|
|
|
# -------------------------------------------------------
|
2018-02-02 23:54:07 +03:00
|
|
|
django-anymail==1.3
|
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
|
|
|
|
# --------------------------
|
2018-01-23 18:48:00 +03:00
|
|
|
raven==6.5.0
|
2015-07-27 18:42:23 +03:00
|
|
|
{%- endif %}
|
2015-10-04 15:06:20 +03:00
|
|
|
|
2015-11-16 18:55:37 +03:00
|
|
|
{% if cookiecutter.use_opbeat == "y" -%}
|
|
|
|
# Opbeat agent for performance monitoring
|
|
|
|
# -----------------------------------------
|
2018-02-02 16:30:20 +03:00
|
|
|
opbeat==3.6.1
|
2015-11-16 18:55:37 +03:00
|
|
|
{%- endif %}
|