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
|
|
|
|
2021-03-27 12:04:38 +03:00
|
|
|
gunicorn==20.1.0 # https://github.com/benoitc/gunicorn
|
2021-12-29 21:42:46 +03:00
|
|
|
psycopg2==2.9.3 # 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" %}
|
2022-05-14 13:26:08 +03:00
|
|
|
sentry-sdk==1.5.12 # https://github.com/getsentry/sentry-python
|
2021-01-18 23:58:00 +03:00
|
|
|
{%- endif %}
|
2020-05-01 17:39:30 +03:00
|
|
|
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
|
2021-03-29 19:12:28 +03:00
|
|
|
hiredis==2.0.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' %}
|
2021-10-30 06:24:58 +03:00
|
|
|
django-storages[boto3]==1.12.3 # https://github.com/jschneier/django-storages
|
2019-05-19 02:24:29 +03:00
|
|
|
{%- elif cookiecutter.cloud_provider == 'GCP' %}
|
2021-10-30 06:24:59 +03:00
|
|
|
django-storages[google]==1.12.3 # 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' %}
|
2022-01-21 15:55:17 +03:00
|
|
|
django-anymail[mailgun]==8.5 # https://github.com/anymail/django-anymail
|
2020-03-14 20:43:37 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Amazon SES' %}
|
2022-01-21 15:55:17 +03:00
|
|
|
django-anymail[amazon_ses]==8.5 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Mailjet' %}
|
2022-01-21 15:55:17 +03:00
|
|
|
django-anymail[mailjet]==8.5 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Mandrill' %}
|
2022-01-21 15:55:17 +03:00
|
|
|
django-anymail[mandrill]==8.5 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Postmark' %}
|
2022-01-21 15:55:17 +03:00
|
|
|
django-anymail[postmark]==8.5 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Sendgrid' %}
|
2022-01-21 15:55:17 +03:00
|
|
|
django-anymail[sendgrid]==8.5 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'SendinBlue' %}
|
2022-01-21 15:55:17 +03:00
|
|
|
django-anymail[sendinblue]==8.5 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'SparkPost' %}
|
2022-01-21 15:55:17 +03:00
|
|
|
django-anymail[sparkpost]==8.5 # https://github.com/anymail/django-anymail
|
2020-03-14 20:43:37 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Other SMTP' %}
|
2022-01-21 15:55:17 +03:00
|
|
|
django-anymail==8.5 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- endif %}
|