mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
27 lines
600 B
Plaintext
27 lines
600 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
|
|
|
|
# WSGI Handler
|
|
# ------------------------------------------------
|
|
gevent==1.0.2
|
|
gunicorn==19.3.0
|
|
|
|
# Static and Media Storage
|
|
# ------------------------------------------------
|
|
boto==2.38.0
|
|
django-storages-redux==1.2.3
|
|
{% if cookiecutter.use_whitenoise != 'y' -%}
|
|
Collectfast==0.2.3
|
|
{%- endif %}
|
|
|
|
# Mailgun Support
|
|
# ---------------
|
|
django-mailgun==0.2.2
|
|
|
|
{% if cookiecutter.use_sentry == "y" -%}
|
|
# Raven is the Sentry client
|
|
# --------------------------
|
|
raven
|
|
{%- endif %}
|