2013-08-14 22:01:41 +04:00
|
|
|
# Pro-tip: Try not to put anything here. There should be no dependency in
|
|
|
|
# production that isn't in development.
|
|
|
|
-r base.txt
|
|
|
|
|
2015-10-20 02:02:42 +03:00
|
|
|
{% if cookiecutter.windows == 'y' -%}
|
|
|
|
# Python-PostgreSQL Database Adapter
|
|
|
|
# If using Win for dev, this assumes Unix in prod
|
|
|
|
# ------------------------------------------------
|
|
|
|
psycopg2==2.6.1
|
|
|
|
{%- endif %}
|
|
|
|
|
2015-04-26 12:57:45 +03:00
|
|
|
# WSGI Handler
|
|
|
|
# ------------------------------------------------
|
2015-11-23 01:24:25 +03:00
|
|
|
{% if cookiecutter.use_python2 == 'y' -%}
|
|
|
|
gevent==1.0.2
|
|
|
|
{% else %}
|
|
|
|
# there's no python 3 support in stable, have to use the latest release candidate for gevent
|
2015-11-23 00:42:35 +03:00
|
|
|
gevent==1.1rc1
|
2015-11-23 01:24:25 +03:00
|
|
|
{% endif %}
|
2015-03-07 18:53:33 +03:00
|
|
|
gunicorn==19.3.0
|
2015-04-26 12:57:45 +03:00
|
|
|
|
|
|
|
# Static and Media Storage
|
|
|
|
# ------------------------------------------------
|
|
|
|
boto==2.38.0
|
2015-08-21 08:08:40 +03:00
|
|
|
django-storages-redux==1.3
|
2015-04-29 06:09:43 +03:00
|
|
|
{% if cookiecutter.use_whitenoise != 'y' -%}
|
2015-04-23 01:35:15 +03:00
|
|
|
Collectfast==0.2.3
|
2015-04-26 12:57:45 +03:00
|
|
|
{%- endif %}
|
2015-07-06 21:23:12 +03:00
|
|
|
|
|
|
|
# Mailgun Support
|
|
|
|
# ---------------
|
2015-11-05 05:24:49 +03:00
|
|
|
django-mailgun==0.8.0
|
2015-07-27 18:42:23 +03:00
|
|
|
|
|
|
|
{% if cookiecutter.use_sentry == "y" -%}
|
|
|
|
# Raven is the Sentry client
|
|
|
|
# --------------------------
|
|
|
|
raven
|
|
|
|
{%- endif %}
|
2015-10-04 15:06:20 +03:00
|
|
|
|
|
|
|
{% if cookiecutter.use_newrelic == "y" -%}
|
|
|
|
# Newrelic agent for performance monitoring
|
|
|
|
# -----------------------------------------
|
|
|
|
newrelic
|
|
|
|
{%- endif %}
|
2015-11-16 18:55:37 +03:00
|
|
|
|
|
|
|
{% if cookiecutter.use_opbeat == "y" -%}
|
|
|
|
# Opbeat agent for performance monitoring
|
|
|
|
# -----------------------------------------
|
|
|
|
opbeat
|
|
|
|
{%- endif %}
|