2018-03-09 12:57:32 +03:00
|
|
|
# PRECAUTION: avoid production dependencies that aren't in development
|
2013-08-14 22:01:41 +04:00
|
|
|
|
2020-07-24 19:38:29 +03:00
|
|
|
-r base.txt
|
2015-10-20 02:02:42 +03:00
|
|
|
|
2020-03-25 04:53:53 +03:00
|
|
|
gunicorn==20.0.4 # https://github.com/benoitc/gunicorn
|
2020-09-07 16:10:57 +03:00
|
|
|
psycopg2==2.8.6 # https://github.com/psycopg/psycopg2
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- if cookiecutter.use_whitenoise == 'n' %}
|
2020-06-06 03:08:27 +03:00
|
|
|
Collectfast==2.2.0 # https://github.com/antonagestam/collectfast
|
2015-04-26 12:57:45 +03:00
|
|
|
{%- endif %}
|
2021-01-18 23:58:00 +03:00
|
|
|
{%- if cookiecutter.use_sentry == "y" %}
|
|
|
|
sentry-sdk==0.19.5 # https://github.com/getsentry/sentry-python
|
|
|
|
{%- endif %}
|
2020-05-01 17:39:30 +03:00
|
|
|
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
|
2020-07-24 19:58:27 +03:00
|
|
|
hiredis==1.1.0 # https://github.com/redis/hiredis-py
|
2020-04-29 23:42:24 +03:00
|
|
|
{%- endif %}
|
2018-03-09 12:57:32 +03:00
|
|
|
|
|
|
|
# Django
|
|
|
|
# ------------------------------------------------------------------------------
|
2019-04-02 09:13:31 +03:00
|
|
|
{%- if cookiecutter.cloud_provider == 'AWS' %}
|
2020-12-24 05:42:45 +03:00
|
|
|
django-storages[boto3]==1.11.1 # https://github.com/jschneier/django-storages
|
2019-05-19 02:24:29 +03:00
|
|
|
{%- elif cookiecutter.cloud_provider == 'GCP' %}
|
2020-12-24 05:42:46 +03:00
|
|
|
django-storages[google]==1.11.1 # https://github.com/jschneier/django-storages
|
2019-04-02 09:13:31 +03:00
|
|
|
{%- endif %}
|
2020-03-14 20:43:37 +03:00
|
|
|
{%- if cookiecutter.mail_service == 'Mailgun' %}
|
2021-01-28 20:24:34 +03:00
|
|
|
django-anymail[mailgun]==8.2 # https://github.com/anymail/django-anymail
|
2020-03-14 20:43:37 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Amazon SES' %}
|
2021-01-28 20:24:35 +03:00
|
|
|
django-anymail[amazon_ses]==8.2 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Mailjet' %}
|
2021-01-28 20:24:35 +03:00
|
|
|
django-anymail[mailjet]==8.2 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Mandrill' %}
|
2020-10-09 23:10:58 +03:00
|
|
|
django-anymail[mandrill]==8.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Postmark' %}
|
2020-10-09 23:10:59 +03:00
|
|
|
django-anymail[postmark]==8.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Sendgrid' %}
|
2020-10-09 23:11:00 +03:00
|
|
|
django-anymail[sendgrid]==8.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'SendinBlue' %}
|
2020-10-09 23:11:01 +03:00
|
|
|
django-anymail[sendinblue]==8.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'SparkPost' %}
|
2020-10-09 23:11:02 +03:00
|
|
|
django-anymail[sparkpost]==8.1 # https://github.com/anymail/django-anymail
|
2020-03-14 20:43:37 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Other SMTP' %}
|
2020-10-09 23:11:03 +03:00
|
|
|
django-anymail==8.1 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- endif %}
|