mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-14 21:57:09 +03:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
# 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
|
|
# If using Win for dev, this assumes Unix in prod
|
|
# ------------------------------------------------
|
|
psycopg2==2.6.1
|
|
{%- endif %}
|
|
|
|
# WSGI Handler
|
|
# ------------------------------------------------
|
|
gevent==1.1.1
|
|
gunicorn==19.5.0
|
|
|
|
# Static and Media Storage
|
|
# ------------------------------------------------
|
|
boto==2.40.0
|
|
django-storages-redux==1.3.2
|
|
{% if cookiecutter.use_whitenoise != 'y' -%}
|
|
Collectfast==0.2.3
|
|
{%- endif %}
|
|
|
|
# Email backends for Mailgun, Postmark, SendGrid and more
|
|
# -------------------------------------------------------
|
|
django-anymail==0.3.1
|
|
|
|
{% if cookiecutter.use_sentry == "y" -%}
|
|
# Raven is the Sentry client
|
|
# --------------------------
|
|
raven
|
|
{%- endif %}
|
|
|
|
{% if cookiecutter.use_newrelic == "y" -%}
|
|
# Newrelic agent for performance monitoring
|
|
# -----------------------------------------
|
|
newrelic
|
|
{%- endif %}
|
|
|
|
{% if cookiecutter.use_opbeat == "y" -%}
|
|
# Opbeat agent for performance monitoring
|
|
# -----------------------------------------
|
|
opbeat
|
|
{%- endif %}
|