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
|
|
|
|
2024-08-11 02:00:14 +03:00
|
|
|
gunicorn==23.0.0 # https://github.com/benoitc/gunicorn
|
2024-09-16 15:47:40 +03:00
|
|
|
psycopg[c]==3.2.2 # https://github.com/psycopg/psycopg
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- if cookiecutter.use_whitenoise == 'n' %}
|
2024-07-10 19:52:05 +03:00
|
|
|
Collectfasta==3.2.0 # https://github.com/jasongi/collectfasta
|
2015-04-26 12:57:45 +03:00
|
|
|
{%- endif %}
|
2021-01-18 23:58:00 +03:00
|
|
|
{%- if cookiecutter.use_sentry == "y" %}
|
2024-09-09 17:54:22 +03:00
|
|
|
sentry-sdk==2.14.0 # 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" %}
|
2024-07-20 17:47:04 +03:00
|
|
|
hiredis==3.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' %}
|
2024-07-09 10:45:08 +03:00
|
|
|
django-storages[s3]==1.14.4 # https://github.com/jschneier/django-storages
|
2019-05-19 02:24:29 +03:00
|
|
|
{%- elif cookiecutter.cloud_provider == 'GCP' %}
|
2024-07-09 10:45:08 +03:00
|
|
|
django-storages[google]==1.14.4 # https://github.com/jschneier/django-storages
|
2022-11-30 21:26:58 +03:00
|
|
|
{%- elif cookiecutter.cloud_provider == 'Azure' %}
|
2024-07-09 10:45:08 +03:00
|
|
|
django-storages[azure]==1.14.4 # 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' %}
|
2024-09-11 18:38:10 +03:00
|
|
|
django-anymail[mailgun]==12.0 # https://github.com/anymail/django-anymail
|
2020-03-14 20:43:37 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Amazon SES' %}
|
2024-09-11 18:38:10 +03:00
|
|
|
django-anymail[amazon-ses]==12.0 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Mailjet' %}
|
2024-09-11 18:38:10 +03:00
|
|
|
django-anymail[mailjet]==12.0 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Mandrill' %}
|
2024-09-11 18:38:10 +03:00
|
|
|
django-anymail[mandrill]==12.0 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Postmark' %}
|
2024-09-11 18:38:10 +03:00
|
|
|
django-anymail[postmark]==12.0 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Sendgrid' %}
|
2024-09-11 18:38:10 +03:00
|
|
|
django-anymail[sendgrid]==12.0 # https://github.com/anymail/django-anymail
|
2024-05-27 16:46:12 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Brevo' %}
|
2024-09-11 18:38:10 +03:00
|
|
|
django-anymail[brevo]==12.0 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'SparkPost' %}
|
2024-09-11 18:38:10 +03:00
|
|
|
django-anymail[sparkpost]==12.0 # https://github.com/anymail/django-anymail
|
2020-03-14 20:43:37 +03:00
|
|
|
{%- elif cookiecutter.mail_service == 'Other SMTP' %}
|
2024-09-11 18:38:10 +03:00
|
|
|
django-anymail==12.0 # https://github.com/anymail/django-anymail
|
2020-02-07 00:58:15 +03:00
|
|
|
{%- endif %}
|