mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-08-08 14:04:52 +03:00
Prettify production.txt
This commit is contained in:
parent
7bd8a79ba5
commit
c15f2db3fb
|
@ -1,39 +1,21 @@
|
||||||
# Pro-tip: Try not to put anything here. Avoid dependencies in
|
# PRECAUTION: avoid production dependencies that aren't in development
|
||||||
# production that aren't in development.
|
|
||||||
-r base.txt
|
-r base.txt
|
||||||
|
|
||||||
{% if cookiecutter.windows == 'y' -%}
|
|
||||||
# Python-PostgreSQL Database Adapter
|
|
||||||
# Assuming Windows is used locally, and *nix -- in production.
|
|
||||||
# ------------------------------------------------------------
|
|
||||||
psycopg2==2.7.4 --no-binary psycopg2
|
|
||||||
{%- endif %}
|
|
||||||
|
|
||||||
# WSGI Handler
|
|
||||||
# ------------------------------------------------
|
|
||||||
gevent==1.2.2
|
gevent==1.2.2
|
||||||
gunicorn==19.7.1
|
gunicorn==19.7.1 # https://github.com/benoitc/gunicorn
|
||||||
|
boto3==1.6.2 # pyup: update minor # https://github.com/boto/boto3
|
||||||
# Static and Media Storage
|
{%- if cookiecutter.use_whitenoise == 'n' %}
|
||||||
# ------------------------------------------------
|
Collectfast==0.6.0 # https://github.com/antonagestam/collectfast
|
||||||
boto3==1.6.2 # pyup: update minor
|
{%- endif %}
|
||||||
django-storages==1.6.5
|
{%- if cookiecutter.use_sentry_for_error_reporting == "y" %}
|
||||||
{% if cookiecutter.use_whitenoise != 'y' -%}
|
raven==6.6.0 # https://github.com/getsentry/raven-python
|
||||||
Collectfast==0.6.0
|
{%- endif %}
|
||||||
|
{%- if cookiecutter.use_opbeat == "y" %}
|
||||||
|
opbeat==3.6.1 # https://github.com/opbeat/opbeat_python
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
|
||||||
# Email backends for Mailgun, Postmark, SendGrid and more
|
# Django
|
||||||
# -------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
django-anymail==1.4
|
django-storages==1.6.5 # https://github.com/jschneier/django-storages
|
||||||
|
django-anymail==1.4 # https://github.com/anymail/django-anymail
|
||||||
{% if cookiecutter.use_sentry_for_error_reporting == "y" -%}
|
|
||||||
# Raven is the Sentry client
|
|
||||||
# --------------------------
|
|
||||||
raven==6.6.0
|
|
||||||
{%- endif %}
|
|
||||||
|
|
||||||
{% if cookiecutter.use_opbeat == "y" -%}
|
|
||||||
# Opbeat agent for performance monitoring
|
|
||||||
# -----------------------------------------
|
|
||||||
opbeat==3.6.1
|
|
||||||
{%- endif %}
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user