cookiecutter-django/{{cookiecutter.repo_name}}/requirements/production.txt
Jannis Gebauer ba00160aab Merge pull request #362 from amjith/master
Add newrelic for monitoring.
2015-11-07 20:10:00 +01:00

40 lines
958 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
{% 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
# ------------------------------------------------
gevent==1.0.2
gunicorn==19.3.0
# Static and Media Storage
# ------------------------------------------------
boto==2.38.0
django-storages-redux==1.3
{% if cookiecutter.use_whitenoise != 'y' -%}
Collectfast==0.2.3
{%- endif %}
# Mailgun Support
# ---------------
django-mailgun==0.8.0
{% if cookiecutter.use_sentry == "y" -%}
# Raven is the Sentry client
# --------------------------
raven
{%- endif %}
{% if cookiecutter.use_newrelic == "y" -%}
# Newrelic agent for performance monitoring
# -----------------------------------------
newrelic
{%- endif %}